Skip to content

Commit 3e4e367

Browse files
committed
add sticker
1 parent 6bae4f7 commit 3e4e367

File tree

13 files changed

+476
-214
lines changed

13 files changed

+476
-214
lines changed

.idea/workspace.xml

Lines changed: 124 additions & 67 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

images/mimi1.gif

142 KB
Loading

images/mimi2.gif

56 KB
Loading

images/mimi3.gif

44.2 KB
Loading

images/mimi4.gif

362 KB
Loading

images/mimi5.gif

90.3 KB
Loading

images/mimi6.gif

140 KB
Loading

images/mimi7.gif

80.2 KB
Loading

images/mimi8.gif

61 KB
Loading

images/mimi9.gif

38 KB
Loading

lib/chat.dart

Lines changed: 340 additions & 144 deletions
Large diffs are not rendered by default.

lib/main.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ class MainScreenState extends State<MainScreen> {
2828
const Choice(title: 'Log out', icon: Icons.exit_to_app),
2929
];
3030

31-
Future<bool> onWillPopScope() {
31+
Future<bool> onBackPress() {
3232
openDialog();
33-
return new Future.value(false);
33+
return Future.value(false);
3434
}
3535

3636
Future<Null> openDialog() async {
@@ -283,7 +283,7 @@ class MainScreenState extends State<MainScreen> {
283283
)
284284
],
285285
),
286-
onWillPop: onWillPopScope,
286+
onWillPop: onBackPress,
287287
),
288288
);
289289
}

pubspec.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,15 @@ flutter:
3939
# - images/a_dot_burr.jpeg
4040
# - images/a_dot_ham.jpeg
4141
- images/img_not_available.jpeg
42+
- images/mimi1.gif
43+
- images/mimi2.gif
44+
- images/mimi3.gif
45+
- images/mimi4.gif
46+
- images/mimi5.gif
47+
- images/mimi6.gif
48+
- images/mimi7.gif
49+
- images/mimi8.gif
50+
- images/mimi9.gif
4251

4352
# An image asset can refer to one or more resolution-specific "variants", see
4453
# https://flutter.io/assets-and-images/#resolution-aware.

0 commit comments

Comments
 (0)