Skip to content

Commit

Permalink
Add support for Google Play Store
Browse files Browse the repository at this point in the history
  • Loading branch information
maelchiotti committed Feb 18, 2024
1 parent 05dd827 commit 4f7e941
Show file tree
Hide file tree
Showing 15 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Simple, local, material design notes.
### Customize

- Choose your theme (light, dark or black)
- Choose if you want your theme to be dynamic (use colors from your system, if supported)
- Choose if you want your theme to be dynamic (use colors from your background)
- Choose your language (see the [supported ones](#supported-languages))

## Screenshots
Expand Down
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Binary file added assets/play_store/banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/play_store/banner.psd
Binary file not shown.
Binary file added assets/play_store/icon_play_store.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion lib/common/navigation/side_navigation.dart
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class _SideNavigationState extends State<SideNavigation> {
mainAxisAlignment: MainAxisAlignment.center,
children: [
Image.asset(
Asset.icon.path,
Asset.icons.path,
filterQuality: FilterQuality.medium,
fit: BoxFit.fitWidth,
width: Sizes.size64.size,
Expand Down
2 changes: 1 addition & 1 deletion lib/pages/authentication/authentication_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class _AuthenticationPageState extends State<AuthenticationPage> {
mainAxisAlignment: MainAxisAlignment.center,
children: [
Image.asset(
Asset.icon.path,
Asset.icons.path,
filterQuality: FilterQuality.medium,
fit: BoxFit.fitWidth,
width: Sizes.size128.size,
Expand Down
2 changes: 1 addition & 1 deletion lib/pages/settings/interactions.dart
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ class Interactions {
applicationName: localizations.app_name,
applicationVersion: InfoManager().appVersion,
applicationIcon: Image.asset(
Asset.icon.path,
Asset.icons.path,
filterQuality: FilterQuality.medium,
fit: BoxFit.fitWidth,
width: Sizes.size64.size,
Expand Down
2 changes: 1 addition & 1 deletion lib/utils/asset.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
enum Asset {
icon('logos/icon.png'),
icons('icons/icon.png'),
;

final _basePath = 'assets';
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@ dev_dependencies:
flutter:
uses-material-design: true
assets:
- assets/logos/
- assets/icons/

0 comments on commit 4f7e941

Please sign in to comment.