mirror of
https://github.com/Iconica-Development/flutter_timeline.git
synced 2025-05-19 10:33:44 +02:00
fix: add symlinks to main package
This commit is contained in:
parent
f119710bd2
commit
9faca7cb99
14 changed files with 17 additions and 7 deletions
|
@ -1,3 +1,6 @@
|
||||||
|
## 6.0.0
|
||||||
|
* Refactor the timeline package to use the new structure
|
||||||
|
|
||||||
## 5.1.0
|
## 5.1.0
|
||||||
|
|
||||||
* Added `routeToPostDetail` to the `TimelineUserStory` to allow for navigation to the post detail screen.
|
* Added `routeToPostDetail` to the `TimelineUserStory` to allow for navigation to the post detail screen.
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
List of Features from this component:
|
|
|
@ -24,9 +24,6 @@ If you are going to use Firebase as the back-end of the Timeline, you should als
|
||||||
```
|
```
|
||||||
|
|
||||||
In firebase add firestore and storage to your project.
|
In firebase add firestore and storage to your project.
|
||||||
In firestore add a collection named `timeline` and a collection named `users`.
|
|
||||||
In the `timeline` collection all posts will be stored. In the `users` collection all users will be stored.
|
|
||||||
In the `users` collection you should add your users data.
|
|
||||||
|
|
||||||
Add the following code in your `main` function, before the runApp().
|
Add the following code in your `main` function, before the runApp().
|
||||||
And import this package: import 'package:intl/date_symbol_data_local.dart';
|
And import this package: import 'package:intl/date_symbol_data_local.dart';
|
||||||
|
|
1
packages/firebase_timeline_repository/CHANGELOG.md
Symbolic link
1
packages/firebase_timeline_repository/CHANGELOG.md
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../../CHANGELOG.md
|
1
packages/firebase_timeline_repository/CONTRIBUTING.md
Symbolic link
1
packages/firebase_timeline_repository/CONTRIBUTING.md
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../../CONTRIBUTING.md
|
1
packages/firebase_timeline_repository/LICENSE
Symbolic link
1
packages/firebase_timeline_repository/LICENSE
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../../LICENSE
|
1
packages/firebase_timeline_repository/README.md
Symbolic link
1
packages/firebase_timeline_repository/README.md
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../../README.md
|
1
packages/flutter_timeline/CONTRIBUTING.md
Symbolic link
1
packages/flutter_timeline/CONTRIBUTING.md
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../../CONTRIBUTING.md
|
|
@ -12,9 +12,10 @@ dependencies:
|
||||||
flutter:
|
flutter:
|
||||||
sdk: flutter
|
sdk: flutter
|
||||||
flutter_timeline:
|
flutter_timeline:
|
||||||
path: ../../flutter_timeline
|
git:
|
||||||
timeline_repository_interface:
|
url: https://github.com/Iconica-Development/flutter_timeline
|
||||||
path: ../../timeline_repository_interface
|
ref: 6.0.0
|
||||||
|
path: packages/flutter_timeline
|
||||||
intl: 0.19.0
|
intl: 0.19.0
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
flutter_lints: ^4.0.0
|
flutter_lints: ^4.0.0
|
||||||
|
|
|
@ -6,6 +6,7 @@ library flutter_timeline;
|
||||||
|
|
||||||
/// userstory
|
/// userstory
|
||||||
export "src/flutter_timeline_navigator_userstory.dart";
|
export "src/flutter_timeline_navigator_userstory.dart";
|
||||||
|
export "package:timeline_repository_interface/timeline_repository_interface.dart";
|
||||||
|
|
||||||
/// models
|
/// models
|
||||||
export "src/models/timeline_options.dart";
|
export "src/models/timeline_options.dart";
|
||||||
|
|
1
packages/timeline_repository_interface/CHANGELOG.md
Symbolic link
1
packages/timeline_repository_interface/CHANGELOG.md
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../../CHANGELOG.md
|
1
packages/timeline_repository_interface/CONTRIBUTING.md
Symbolic link
1
packages/timeline_repository_interface/CONTRIBUTING.md
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../../CONTRIBUTING.md
|
1
packages/timeline_repository_interface/LICENSE
Symbolic link
1
packages/timeline_repository_interface/LICENSE
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../../LICENSE
|
1
packages/timeline_repository_interface/README.md
Symbolic link
1
packages/timeline_repository_interface/README.md
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../../README.md
|
Loading…
Reference in a new issue