Skip to content

Commit

Permalink
fix: slidable action icon color. (#506)
Browse files Browse the repository at this point in the history
  • Loading branch information
Livinglist authored Jan 22, 2025
1 parent 872c435 commit 341e04d
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 11 deletions.
8 changes: 5 additions & 3 deletions lib/config/custom_router.dart
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,11 @@ final GoRouter router = GoRouter(
ItemScreenArgs(item: snapshot.data!);
return ItemScreen.phone(args);
} else {
return const Center(
child: CircularProgressIndicator(
strokeWidth: Dimens.pt2,
return const Scaffold(
body: Center(
child: CircularProgressIndicator(
strokeWidth: Dimens.pt2,
),
),
);
}
Expand Down
1 change: 1 addition & 0 deletions lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,7 @@ class HackiApp extends StatelessWidget {
brightness:
isDarkModeEnabled ? Brightness.dark : Brightness.light,
seedColor: state.appColor,
dynamicSchemeVariant: DynamicSchemeVariant.fidelity,
);
return FeatureDiscovery(
child: MediaQuery(
Expand Down
11 changes: 6 additions & 5 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -531,10 +531,11 @@ packages:
flutter_slidable:
dependency: "direct main"
description:
name: flutter_slidable
sha256: a857de7ea701f276fd6a6c4c67ae885b60729a3449e42766bb0e655171042801
url: "https://pub.dev"
source: hosted
path: "."
ref: "6ab5a79f1f8f984ad5b5733fd94e90c8f97a0c8d"
resolved-ref: "6ab5a79f1f8f984ad5b5733fd94e90c8f97a0c8d"
url: "/~https://github.com/TimeFinderApp/flutter_slidable"
source: git
version: "3.1.2"
flutter_test:
dependency: "direct dev"
Expand Down Expand Up @@ -1626,4 +1627,4 @@ packages:
version: "3.1.3"
sdks:
dart: ">=3.6.0 <4.0.0"
flutter: ">=3.27.2"
flutter: ">=3.27.3"
7 changes: 5 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ publish_to: none

environment:
sdk: ">=3.0.0 <4.0.0"
flutter: "3.27.2"
flutter: "3.27.3"

dependencies:
adaptive_theme: ^3.2.0
Expand Down Expand Up @@ -34,7 +34,10 @@ dependencies:
flutter_material_color_picker: ^1.2.0
flutter_native_splash: ^2.4.4
flutter_secure_storage: ^9.2.4
flutter_slidable: ^3.0.0
flutter_slidable:
git:
url: /~https://github.com/TimeFinderApp/flutter_slidable
ref: 6ab5a79f1f8f984ad5b5733fd94e90c8f97a0c8d
font_awesome_flutter: ^10.3.0
get_it: ^8.0.3
go_router: ^14.1.4
Expand Down

0 comments on commit 341e04d

Please sign in to comment.