update assets

This commit is contained in:
Neeraj Gupta 2022-06-24 20:59:24 +05:30
parent d3345b94e6
commit 34681b5a34
No known key found for this signature in database
GPG key ID: 3C5A1684DC1729E1
40 changed files with 16 additions and 16 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 197 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 133 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 117 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 193 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 408 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 127 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 101 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 148 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 128 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 422 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 61 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 91 KiB

BIN
assets/gallery_locked.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 91 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

BIN
assets/onboarding_lock.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

BIN
assets/onboarding_safe.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

BIN
assets/onboarding_sync.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 94 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 106 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 73 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 93 KiB

View file

@ -60,11 +60,11 @@ class _FreeSpacePageState extends State<FreeSpacePage> {
children: [
isLightMode
? Image.asset(
'assets/loading_photos_light.png',
'assets/loading_photos_background.png',
color: Colors.white.withOpacity(0.4),
colorBlendMode: BlendMode.modulate,
)
: Image.asset('assets/loading_photos_dark.png'),
: Image.asset('assets/loading_photos_background_dark.png'),
Image.asset(
"assets/backed_up_gallery.png",
height: 160,

View file

@ -26,14 +26,15 @@ class GrantPermissionsWidget extends StatelessWidget {
children: [
isLightMode
? Image.asset(
'assets/loading_photos_light.png',
'assets/loading_photos_background.png',
color: Colors.white.withOpacity(0.4),
colorBlendMode: BlendMode.modulate,
)
: Image.asset('assets/loading_photos_dark.png'),
: Image.asset(
'assets/loading_photos_background_dark.png'),
Center(
child: Image.asset(
"assets/gallery.png",
"assets/gallery_locked.png",
height: 160,
),
),

View file

@ -21,7 +21,6 @@ import 'package:photos/events/subscription_purchased_event.dart';
import 'package:photos/events/sync_status_update_event.dart';
import 'package:photos/events/tab_changed_event.dart';
import 'package:photos/events/trigger_logout_event.dart';
import 'package:photos/events/user_details_changed_event.dart';
import 'package:photos/events/user_logged_out_event.dart';
import 'package:photos/models/file_load_result.dart';
import 'package:photos/models/galleryType.dart';
@ -447,7 +446,7 @@ class _HomeWidgetState extends State<HomeWidget> {
Padding(
padding: const EdgeInsets.only(top: 64),
child: Image.asset(
"assets/preserved.png",
"assets/onboarding_safe.png",
height: 206,
),
),

View file

@ -120,19 +120,19 @@ class _LandingPageWidgetState extends State<LandingPageWidget> {
child: PageView(
children: [
FeatureItemWidget(
"assets/protected.png",
"assets/onboarding_lock.png",
"Private backups",
"for your memories",
"End-to-end encrypted by default",
),
FeatureItemWidget(
"assets/preserved.png",
"assets/onboarding_safe.png",
"Safely stored",
"at a fallout shelter",
"Designed to outlive",
),
FeatureItemWidget(
"assets/synced.png",
"assets/onboarding_lock.png",
"Available",
"everywhere",
Platform.isAndroid

View file

@ -95,12 +95,12 @@ class _LoadingPhotosWidgetState extends State<LoadingPhotosWidget> {
children: [
isLightMode
? Image.asset(
'assets/loading_photos_light.png',
'assets/loading_photos_background.png',
color: Colors.white.withOpacity(0.5),
colorBlendMode: BlendMode.modulate,
)
: Image.asset(
'assets/loading_photos_light.png',
'assets/loading_photos_background_dark.png',
color: Colors.white.withOpacity(0.25),
colorBlendMode: BlendMode.modulate,
),

View file

@ -34,8 +34,8 @@ class _LockScreenState extends State<LockScreen> {
children: [
Image.asset(
MediaQuery.of(context).platformBrightness == Brightness.light
? 'assets/loading_photos_light.png'
: 'assets/loading_photos_dark.png',
? 'assets/loading_photos_background.png'
: 'assets/loading_photos_background_dark.png',
),
SizedBox(
width: 172,

View file

@ -56,7 +56,7 @@ class ChildSubscriptionWidget extends StatelessWidget {
padding: const EdgeInsets.symmetric(vertical: 8),
),
Image.asset(
"assets/family sharing.png",
"assets/family_plan_leave.png",
height: 256,
),
Padding(

View file

@ -39,7 +39,7 @@ class _DetailsSectionWidgetState extends State<DetailsSectionWidget> {
}
});
_background = Image(
image: AssetImage("assets/card_background.png"),
image: AssetImage("assets/storage_card_background.png"),
fit: BoxFit.fill,
);
}