chore: 💄 change theme and icons
After Width: | Height: | Size: 5.4 KiB |
After Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 7.2 KiB |
After Width: | Height: | Size: 10 KiB |
After Width: | Height: | Size: 14 KiB |
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<background android:drawable="@color/ic_launcher_background"/>
|
||||||
|
<foreground android:drawable="@drawable/ic_launcher_foreground"/>
|
||||||
|
<monochrome android:drawable="@drawable/ic_launcher_foreground"/>
|
||||||
|
</adaptive-icon>
|
Before Width: | Height: | Size: 544 B After Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 442 B After Width: | Height: | Size: 2 KiB |
Before Width: | Height: | Size: 721 B After Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 1 KiB After Width: | Height: | Size: 6.4 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 8.8 KiB |
4
android/app/src/main/res/values/colors.xml
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<color name="ic_launcher_background">#2ce086</color>
|
||||||
|
</resources>
|
BIN
assets/icon/dynamic_foreground.png
Normal file
After Width: | Height: | Size: 36 KiB |
BIN
assets/icon/full_ico.png
Normal file
After Width: | Height: | Size: 62 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 53 KiB |
Before Width: | Height: | Size: 295 B After Width: | Height: | Size: 900 B |
Before Width: | Height: | Size: 406 B After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 450 B After Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 282 B After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 462 B After Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 704 B After Width: | Height: | Size: 3.5 KiB |
Before Width: | Height: | Size: 406 B After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 586 B After Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 862 B After Width: | Height: | Size: 5 KiB |
After Width: | Height: | Size: 2 KiB |
After Width: | Height: | Size: 4.1 KiB |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 862 B After Width: | Height: | Size: 5 KiB |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 7.7 KiB |
After Width: | Height: | Size: 2.9 KiB |
After Width: | Height: | Size: 6.1 KiB |
Before Width: | Height: | Size: 762 B After Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 6.5 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 7.2 KiB |
|
@ -33,7 +33,12 @@ class MyApp extends StatelessWidget {
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
: Theme(
|
: Theme(
|
||||||
data: ThemeData(useMaterial3: true, colorScheme: lightColorScheme),
|
data: ThemeData(
|
||||||
|
useMaterial3: true,
|
||||||
|
colorScheme: (MediaQuery.of(context).platformBrightness ==
|
||||||
|
Brightness.dark)
|
||||||
|
? darkColorScheme
|
||||||
|
: lightColorScheme),
|
||||||
child: const CupertinoApp(
|
child: const CupertinoApp(
|
||||||
title: 'Prašule',
|
title: 'Prašule',
|
||||||
home: HomeView(),
|
home: HomeView(),
|
||||||
|
|
|
@ -2,68 +2,68 @@ import 'package:flutter/material.dart';
|
||||||
|
|
||||||
const lightColorScheme = ColorScheme(
|
const lightColorScheme = ColorScheme(
|
||||||
brightness: Brightness.light,
|
brightness: Brightness.light,
|
||||||
primary: Color(0xFF006D34),
|
primary: Color(0xFF006D3C),
|
||||||
onPrimary: Color(0xFFFFFFFF),
|
onPrimary: Color(0xFFFFFFFF),
|
||||||
primaryContainer: Color(0xFF89FAA5),
|
primaryContainer: Color(0xFF5AFFA2),
|
||||||
onPrimaryContainer: Color(0xFF00210B),
|
onPrimaryContainer: Color(0xFF00210E),
|
||||||
secondary: Color(0xFF506352),
|
secondary: Color(0xFF4F6353),
|
||||||
onSecondary: Color(0xFFFFFFFF),
|
onSecondary: Color(0xFFFFFFFF),
|
||||||
secondaryContainer: Color(0xFFD3E8D2),
|
secondaryContainer: Color(0xFFD2E8D4),
|
||||||
onSecondaryContainer: Color(0xFF0E1F12),
|
onSecondaryContainer: Color(0xFF0D1F13),
|
||||||
tertiary: Color(0xFF286C2A),
|
tertiary: Color(0xFF006B55),
|
||||||
onTertiary: Color(0xFFFFFFFF),
|
onTertiary: Color(0xFFFFFFFF),
|
||||||
tertiaryContainer: Color(0xFFABF4A2),
|
tertiaryContainer: Color(0xFF7FF8D3),
|
||||||
onTertiaryContainer: Color(0xFF002203),
|
onTertiaryContainer: Color(0xFF002118),
|
||||||
error: Color(0xFFBA1A1A),
|
error: Color(0xFFBA1A1A),
|
||||||
errorContainer: Color(0xFFFFDAD6),
|
errorContainer: Color(0xFFFFDAD6),
|
||||||
onError: Color(0xFFFFFFFF),
|
onError: Color(0xFFFFFFFF),
|
||||||
onErrorContainer: Color(0xFF410002),
|
onErrorContainer: Color(0xFF410002),
|
||||||
background: Color(0xFFFCFDF7),
|
background: Color(0xFFFBFDF8),
|
||||||
onBackground: Color(0xFF191C19),
|
onBackground: Color(0xFF191C19),
|
||||||
surface: Color(0xFFFCFDF7),
|
surface: Color(0xFFFBFDF8),
|
||||||
onSurface: Color(0xFF191C19),
|
onSurface: Color(0xFF191C19),
|
||||||
surfaceVariant: Color(0xFFDDE5DA),
|
surfaceVariant: Color(0xFFDCE5DB),
|
||||||
onSurfaceVariant: Color(0xFF414941),
|
onSurfaceVariant: Color(0xFF414942),
|
||||||
outline: Color(0xFF717970),
|
outline: Color(0xFF717971),
|
||||||
onInverseSurface: Color(0xFFF0F1EC),
|
onInverseSurface: Color(0xFFF0F1EC),
|
||||||
inverseSurface: Color(0xFF2E312E),
|
inverseSurface: Color(0xFF2E312E),
|
||||||
inversePrimary: Color(0xFF6DDD8B),
|
inversePrimary: Color(0xFF2FE288),
|
||||||
shadow: Color(0xFF000000),
|
shadow: Color(0xFF000000),
|
||||||
surfaceTint: Color(0xFF006D34),
|
surfaceTint: Color(0xFF006D3C),
|
||||||
outlineVariant: Color(0xFFC1C9BE),
|
outlineVariant: Color(0xFFC0C9BF),
|
||||||
scrim: Color(0xFF000000),
|
scrim: Color(0xFF000000),
|
||||||
);
|
);
|
||||||
|
|
||||||
const darkColorScheme = ColorScheme(
|
const darkColorScheme = ColorScheme(
|
||||||
brightness: Brightness.dark,
|
brightness: Brightness.dark,
|
||||||
primary: Color(0xFF6DDD8B),
|
primary: Color(0xFF2FE288),
|
||||||
onPrimary: Color(0xFF003918),
|
onPrimary: Color(0xFF00391D),
|
||||||
primaryContainer: Color(0xFF005225),
|
primaryContainer: Color(0xFF00522C),
|
||||||
onPrimaryContainer: Color(0xFF89FAA5),
|
onPrimaryContainer: Color(0xFF5AFFA2),
|
||||||
secondary: Color(0xFFB7CCB7),
|
secondary: Color(0xFFB6CCB9),
|
||||||
onSecondary: Color(0xFF233426),
|
onSecondary: Color(0xFF223527),
|
||||||
secondaryContainer: Color(0xFF394B3B),
|
secondaryContainer: Color(0xFF384B3D),
|
||||||
onSecondaryContainer: Color(0xFFD3E8D2),
|
onSecondaryContainer: Color(0xFFD2E8D4),
|
||||||
tertiary: Color(0xFF90D889),
|
tertiary: Color(0xFF61DBB7),
|
||||||
onTertiary: Color(0xFF003908),
|
onTertiary: Color(0xFF00382B),
|
||||||
tertiaryContainer: Color(0xFF095314),
|
tertiaryContainer: Color(0xFF00513F),
|
||||||
onTertiaryContainer: Color(0xFFABF4A2),
|
onTertiaryContainer: Color(0xFF7FF8D3),
|
||||||
error: Color(0xFFFFB4AB),
|
error: Color(0xFFFFB4AB),
|
||||||
errorContainer: Color(0xFF93000A),
|
errorContainer: Color(0xFF93000A),
|
||||||
onError: Color(0xFF690005),
|
onError: Color(0xFF690005),
|
||||||
onErrorContainer: Color(0xFFFFDAD6),
|
onErrorContainer: Color(0xFFFFDAD6),
|
||||||
background: Color(0xFF191C19),
|
background: Color(0xFF191C19),
|
||||||
onBackground: Color(0xFFE2E3DE),
|
onBackground: Color(0xFFE1E3DE),
|
||||||
surface: Color(0xFF191C19),
|
surface: Color(0xFF191C19),
|
||||||
onSurface: Color(0xFFE2E3DE),
|
onSurface: Color(0xFFE1E3DE),
|
||||||
surfaceVariant: Color(0xFF414941),
|
surfaceVariant: Color(0xFF414942),
|
||||||
onSurfaceVariant: Color(0xFFC1C9BE),
|
onSurfaceVariant: Color(0xFFC0C9BF),
|
||||||
outline: Color(0xFF8B9389),
|
outline: Color(0xFF8B938A),
|
||||||
onInverseSurface: Color(0xFF191C19),
|
onInverseSurface: Color(0xFF191C19),
|
||||||
inverseSurface: Color(0xFFE2E3DE),
|
inverseSurface: Color(0xFFE1E3DE),
|
||||||
inversePrimary: Color(0xFF006D34),
|
inversePrimary: Color(0xFF006D3C),
|
||||||
shadow: Color(0xFF000000),
|
shadow: Color(0xFF000000),
|
||||||
surfaceTint: Color(0xFF6DDD8B),
|
surfaceTint: Color(0xFF2FE288),
|
||||||
outlineVariant: Color(0xFF414941),
|
outlineVariant: Color(0xFF414942),
|
||||||
scrim: Color(0xFF000000),
|
scrim: Color(0xFF000000),
|
||||||
);
|
);
|
||||||
|
|
56
pubspec.lock
|
@ -17,6 +17,14 @@ packages:
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "6.0.0"
|
version: "6.0.0"
|
||||||
|
archive:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: archive
|
||||||
|
sha256: e0902a06f0e00414e4e3438a084580161279f137aeb862274710f29ec10cf01e
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "3.3.9"
|
||||||
args:
|
args:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
@ -121,6 +129,14 @@ packages:
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.0.3"
|
version: "2.0.3"
|
||||||
|
cli_util:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: cli_util
|
||||||
|
sha256: b8db3080e59b2503ca9e7922c3df2072cf13992354d5e944074ffa836fba43b7
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "0.4.0"
|
||||||
clock:
|
clock:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
@ -363,6 +379,14 @@ packages:
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.0.0"
|
version: "1.0.0"
|
||||||
|
flutter_launcher_icons:
|
||||||
|
dependency: "direct dev"
|
||||||
|
description:
|
||||||
|
name: flutter_launcher_icons
|
||||||
|
sha256: "526faf84284b86a4cb36d20a5e45147747b7563d921373d4ee0559c54fcdbcea"
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "0.13.1"
|
||||||
flutter_lints:
|
flutter_lints:
|
||||||
dependency: "direct dev"
|
dependency: "direct dev"
|
||||||
description:
|
description:
|
||||||
|
@ -474,6 +498,14 @@ packages:
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "4.0.2"
|
version: "4.0.2"
|
||||||
|
image:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: image
|
||||||
|
sha256: a72242c9a0ffb65d03de1b7113bc4e189686fc07c7147b8b41811d0dd0e0d9bf
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "4.0.17"
|
||||||
image_picker:
|
image_picker:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
|
@ -727,6 +759,14 @@ packages:
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.1.7"
|
version: "2.1.7"
|
||||||
|
petitparser:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: petitparser
|
||||||
|
sha256: eeb2d1428ee7f4170e2bd498827296a18d4e7fc462b71727d111c0ac7707cfa6
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "6.0.1"
|
||||||
platform:
|
platform:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
@ -743,6 +783,14 @@ packages:
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.1.5"
|
version: "2.1.5"
|
||||||
|
pointycastle:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: pointycastle
|
||||||
|
sha256: "7c1e5f0d23c9016c5bbd8b1473d0d3fb3fc851b876046039509e18e0c7485f2c"
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "3.7.3"
|
||||||
pool:
|
pool:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
@ -1028,6 +1076,14 @@ packages:
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.0.1"
|
version: "1.0.1"
|
||||||
|
xml:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: xml
|
||||||
|
sha256: af5e77e9b83f2f4adc5d3f0a4ece1c7f45a2467b695c2540381bac793e34e556
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "6.4.2"
|
||||||
yaml:
|
yaml:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
|
19
pubspec.yaml
|
@ -65,6 +65,25 @@ dev_dependencies:
|
||||||
test: ^1.24.6
|
test: ^1.24.6
|
||||||
integration_test:
|
integration_test:
|
||||||
sdk: flutter
|
sdk: flutter
|
||||||
|
flutter_launcher_icons: ^0.13.1
|
||||||
|
|
||||||
|
flutter_launcher_icons:
|
||||||
|
android: true
|
||||||
|
ios: true
|
||||||
|
image_path: "assets/icon/full_ico.png"
|
||||||
|
min_sdk_android: 21 # android min sdk min:16, default 21
|
||||||
|
adaptive_icon_background: "#2ce086"
|
||||||
|
adaptive_icon_foreground: "assets/icon/dynamic_foreground.png"
|
||||||
|
remove_alpha_ios: true
|
||||||
|
# web:
|
||||||
|
# generate: true
|
||||||
|
# background_color: "#2fe288"
|
||||||
|
# theme_color: "#2fe288"
|
||||||
|
# windows:
|
||||||
|
# generate: true
|
||||||
|
# icon_size: 48 # min:48, max:256, default: 48
|
||||||
|
# macos:
|
||||||
|
# generate: true
|
||||||
|
|
||||||
# For information on the generic Dart part of this file, see the
|
# For information on the generic Dart part of this file, see the
|
||||||
# following page: https://dart.dev/tools/pub/pubspec
|
# following page: https://dart.dev/tools/pub/pubspec
|
||||||
|
|