Skip to content

Commit affdd36

Browse files
Fixed an issue with SimpleRoundButton
1 parent 6925d34 commit affdd36

File tree

10 files changed

+340
-1140
lines changed

10 files changed

+340
-1140
lines changed

.idea/codeStyles/Project.xml

Lines changed: 0 additions & 29 deletions
This file was deleted.

.idea/workspace.xml

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

LoadingDemo.cmproj/bookmarks.plist

Lines changed: 0 additions & 5 deletions
This file was deleted.

LoadingDemo.cmproj/docPrefs

Lines changed: 0 additions & 38 deletions
This file was deleted.

LoadingDemo.cmproj/project.tscproj

Lines changed: 0 additions & 733 deletions
This file was deleted.
Binary file not shown.

lib/buttons/simple_round_button.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class SimpleRoundButton extends StatelessWidget {
3636
),
3737
],
3838
),
39-
onPressed: () => onPressed,
39+
onPressed: onPressed,
4040
),
4141
),
4242
],

lib/buttons/simple_round_icon_button.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ class SimpleRoundIconButton extends StatelessWidget {
8989

9090
],
9191
),
92-
onPressed: () => onPressed,
92+
onPressed: onPressed,
9393
),
9494
),
9595
],

lib/buttons/simple_round_only_icon_button.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ class SimpleRoundOnlyIconButton extends StatelessWidget {
112112
: Container()
113113
],
114114
),
115-
onPressed: () => onPressed,
115+
onPressed: onPressed,
116116
),
117117
),
118118
],

0 commit comments

Comments
 (0)