remove unused image

update image usage
master
laiiihz 5 years ago
parent 987b51ca58
commit 504c327656

Binary file not shown.

Before

Width:  |  Height:  |  Size: 688 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 178 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 334 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 659 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 260 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 371 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 358 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 352 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 386 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 428 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 455 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 428 KiB

@ -78,7 +78,7 @@ class _GoodsHotListPageState extends BaseStoreState<GoodsHotListPage> {
child: Stack(
children: <Widget>[
Image.asset(
'assets/goods_hot_list_title_bg.png',
R.ASSETS_GOODS_HOT_LIST_TITLE_BG_PNG_WEBP,
fit: BoxFit.fill,
),
Navigator.canPop(context)

@ -1,6 +1,7 @@
import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';
import 'package:recook/base/base_store_state.dart';
import 'package:recook/constants/header.dart';
import 'package:recook/constants/styles.dart';
import 'package:recook/widgets/custom_app_bar.dart';
@ -12,7 +13,6 @@ class AboutUsPage extends StatefulWidget {
}
class _AboutUsPageState extends BaseStoreState<AboutUsPage> {
@override
Widget buildContext(BuildContext context, {store}) {
return Scaffold(
@ -26,10 +26,13 @@ class _AboutUsPageState extends BaseStoreState<AboutUsPage> {
children: <Widget>[
Container(
// padding: EdgeInsets.symmetric(vertical: 10),
child: Image.asset("assets/recook_about_us.jpg", fit: BoxFit.fill,),
child: Image.asset(
R.ASSETS_RECOOK_ABOUT_US_JPG_WEBP,
fit: BoxFit.fill,
),
)
],
),
);
}
}
}

@ -1,4 +1,5 @@
import 'package:flutter/material.dart';
import 'package:recook/constants/header.dart';
import 'package:recook/constants/styles.dart';
import 'package:recook/widgets/custom_app_bar.dart';
@ -15,7 +16,7 @@ class BussinessCooperationPage extends StatelessWidget {
body: ListView(
children: [
Image.asset(
'assets/businessCooperation.png',
R.ASSETS_BUSINESSCOOPERATION_PNG_WEBP,
fit: BoxFit.fill,
),
],

Loading…
Cancel
Save