mirror of
https://github.com/Iconica-Development/flutter_timeline.git
synced 2025-05-19 02:23:46 +02:00
feat: update last refs to 2.2.0
This commit is contained in:
parent
4569f25f4b
commit
0378ba0eb3
5 changed files with 8 additions and 6 deletions
|
@ -72,7 +72,7 @@ void createPost(
|
|||
MaterialPageRoute(
|
||||
builder: (context) => Scaffold(
|
||||
body: TimelinePostCreationScreen(
|
||||
postCategory: null,
|
||||
postCategory: 'category1',
|
||||
userId: 'test_user',
|
||||
service: service,
|
||||
options: options,
|
||||
|
|
|
@ -19,13 +19,13 @@ dependencies:
|
|||
git:
|
||||
url: https://github.com/Iconica-Development/flutter_timeline
|
||||
path: packages/flutter_timeline_view
|
||||
ref: 2.1.0
|
||||
ref: 2.2.0
|
||||
|
||||
flutter_timeline_interface:
|
||||
git:
|
||||
url: https://github.com/Iconica-Development/flutter_timeline
|
||||
path: packages/flutter_timeline_interface
|
||||
ref: 2.1.0
|
||||
ref: 2.2.0
|
||||
|
||||
dev_dependencies:
|
||||
flutter_lints: ^2.0.0
|
||||
|
|
|
@ -23,7 +23,7 @@ dependencies:
|
|||
git:
|
||||
url: https://github.com/Iconica-Development/flutter_timeline
|
||||
path: packages/flutter_timeline_interface
|
||||
ref: 2.1.0
|
||||
ref: 2.2.0
|
||||
|
||||
dev_dependencies:
|
||||
flutter_lints: ^2.0.0
|
||||
|
|
|
@ -30,7 +30,9 @@ class TimelinePostOverviewScreen extends StatelessWidget {
|
|||
userId: timelinePost.creatorId,
|
||||
options: options,
|
||||
post: timelinePost,
|
||||
onPostDelete: () {},
|
||||
onPostDelete: () async {
|
||||
await service.postService.deletePost(timelinePost);
|
||||
},
|
||||
service: service,
|
||||
),
|
||||
),
|
||||
|
|
|
@ -23,7 +23,7 @@ dependencies:
|
|||
git:
|
||||
url: https://github.com/Iconica-Development/flutter_timeline
|
||||
path: packages/flutter_timeline_interface
|
||||
ref: 2.1.0
|
||||
ref: 2.2.0
|
||||
flutter_image_picker:
|
||||
git:
|
||||
url: https://github.com/Iconica-Development/flutter_image_picker
|
||||
|
|
Loading…
Reference in a new issue