diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml
index 44e70ab..5c549b4 100644
--- a/android/app/src/main/AndroidManifest.xml
+++ b/android/app/src/main/AndroidManifest.xml
@@ -2,6 +2,8 @@
+
+
+ android:name="io.flutter.embedding.android.NormalTheme"
+ android:resource="@style/NormalTheme"
+ />
-
-
+
+
@@ -35,13 +37,14 @@
-
+
-
+
diff --git a/lib/src/introduction/views/intro_view.dart b/lib/src/introduction/views/intro_view.dart
index 8d7ed06..50ad20e 100644
--- a/lib/src/introduction/views/intro_view.dart
+++ b/lib/src/introduction/views/intro_view.dart
@@ -23,6 +23,9 @@ class _IntroductionViewState extends ConsumerState {
done: const Text('Done', style: TextStyle(fontWeight: FontWeight.w700)),
back: const Text('Back'),
showBackButton: true,
+ dotsDecorator: DotsDecorator(
+ activeColor: Theme.of(context).colorScheme.primary,
+ ),
onDone: () {
Navigator.of(context).popAndPushNamed('/home');
},
@@ -44,7 +47,7 @@ class _IntroductionViewState extends ConsumerState {
footer: Center(
child: FilledButton(
onPressed: () async {
- await Permission.accessMediaLocation
+ await Permission.manageExternalStorage
.onDeniedCallback(() {})
.onGrantedCallback(() {})
.request();
@@ -58,7 +61,7 @@ class _IntroductionViewState extends ConsumerState {
body:
'SyncVault requires you to remove battery optimizations to operate normally.',
image: const Center(
- child: Icon(Icons.folder, size: 50.0),
+ child: Icon(Icons.battery_saver, size: 50.0),
),
footer: Center(
child: FilledButton(
@@ -77,7 +80,7 @@ class _IntroductionViewState extends ConsumerState {
body:
'SyncVault requires notification permissions to notify you during sync.',
image: const Center(
- child: Icon(Icons.folder, size: 50.0),
+ child: Icon(Icons.notifications, size: 50.0),
),
footer: Center(
child: FilledButton(