- Flutter project created with flutter create (Android platform) - Runtime deps: flutter_riverpod, riverpod_annotation, drift 2.31, drift_flutter, go_router, path_provider, shared_preferences, flutter_localizations, intl - Dev deps: riverpod_generator, drift_dev 2.31, build_runner - Pinned drift/drift_dev to 2.31 for analyzer ^9.0.0 compatibility with riverpod_generator - Configured l10n.yaml, build.yaml (Drift), analysis_options.yaml (riverpod_lint) - Minimal ARB file for localization tooling to resolve Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
19 lines
996 B
XML
19 lines
996 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<resources>
|
|
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->
|
|
<style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
|
|
<!-- Show a splash screen on the activity. Automatically removed when
|
|
the Flutter engine draws its first frame -->
|
|
<item name="android:windowBackground">@drawable/launch_background</item>
|
|
</style>
|
|
<!-- Theme applied to the Android Window as soon as the process has started.
|
|
This theme determines the color of the Android Window while your
|
|
Flutter UI initializes, as well as behind your Flutter UI while its
|
|
running.
|
|
|
|
This Theme is only used starting with V2 of Flutter's Android embedding. -->
|
|
<style name="NormalTheme" parent="@android:style/Theme.Light.NoTitleBar">
|
|
<item name="android:windowBackground">?android:colorBackground</item>
|
|
</style>
|
|
</resources>
|