Skip to content

Commit

Permalink
Format fix up
Browse files Browse the repository at this point in the history
  • Loading branch information
domesticmouse committed May 29, 2024
1 parent b9f04e6 commit 07db853
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ai_recipe_generation/lib/widgets/icon_loading_indicator.dart
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,7 @@ class _IconLoadingAnimatorState extends State<IconLoadingAnimator> {

void nextIcon() {
setState(() {
currentIcon =
widget.icons[rand.nextInt(widget.icons.length)];
currentIcon = widget.icons[rand.nextInt(widget.icons.length)];
currentColor = widget.colors[rand.nextInt(widget.colors.length)];
});
}
Expand Down

0 comments on commit 07db853

Please sign in to comment.