remove loading icon

hmxc
小赖 4 years ago
parent 047b657aeb
commit c0dd01cf01

@ -4,7 +4,6 @@ import 'package:flutter/material.dart';
import 'package:flutter/cupertino.dart'; import 'package:flutter/cupertino.dart';
import 'package:akuCommunity/utils/screenutil.dart'; import 'package:akuCommunity/utils/screenutil.dart';
import 'package:akuCommunity/base/base_style.dart'; import 'package:akuCommunity/base/base_style.dart';
import 'package:loading_animations/loading_animations.dart';
import 'package:akuCommunity/widget/cached_image_wrapper.dart'; import 'package:akuCommunity/widget/cached_image_wrapper.dart';
import 'package:akuCommunity/model/aku_shop_class_model.dart'; import 'package:akuCommunity/model/aku_shop_class_model.dart';
import 'package:akuCommunity/service/base_model.dart'; import 'package:akuCommunity/service/base_model.dart';
@ -18,7 +17,6 @@ class MarketClassPage extends StatefulWidget {
} }
class _MarketClassPageState extends State<MarketClassPage> { class _MarketClassPageState extends State<MarketClassPage> {
// Future.microtask(() => null)1 // Future.microtask(() => null)1
// void testSX(){ // void testSX(){
// new Future(() => print('s_1')); // new Future(() => print('s_1'));
@ -235,10 +233,7 @@ class _MarketClassPageState extends State<MarketClassPage> {
), ),
) )
: Container( : Container(
child: LoadingBumpingLine.circle( child: CircularProgressIndicator(),
size: 30,
backgroundColor: Colors.white,
),
), ),
); );
} }

@ -34,7 +34,6 @@ class _PersonalIndexState extends State<PersonalIndex>
SliverAppBar _sliverAppBar(double height) { SliverAppBar _sliverAppBar(double height) {
final userProvider = Provider.of<UserProvider>(context); final userProvider = Provider.of<UserProvider>(context);
return SliverAppBar( return SliverAppBar(
pinned: true,
elevation: 0, elevation: 0,
stretch: true, stretch: true,
floating: true, floating: true,

@ -8,7 +8,7 @@ class BeeBackButton extends StatelessWidget {
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Navigator.canPop(context) return Navigator.canPop(context)
? IconButton( ? IconButton(
onPressed: () {}, onPressed: () => Navigator.pop(context),
icon: Icon( icon: Icon(
CupertinoIcons.chevron_back, CupertinoIcons.chevron_back,
), ),

@ -518,6 +518,20 @@ packages:
url: "https://pub.flutter-io.cn" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "1.2.0" version: "1.2.0"
hive:
dependency: "direct main"
description:
name: hive
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.4.4+1"
hive_flutter:
dependency: "direct main"
description:
name: hive_flutter
url: "https://pub.flutter-io.cn"
source: hosted
version: "0.3.1"
html: html:
dependency: transitive dependency: transitive
description: description:
@ -602,13 +616,6 @@ packages:
url: "https://pub.flutter-io.cn" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "0.1.6" version: "0.1.6"
loading_animations:
dependency: "direct main"
description:
name: loading_animations
url: "https://pub.flutter-io.cn"
source: hosted
version: "2.1.0"
logging: logging:
dependency: transitive dependency: transitive
description: description:

@ -85,8 +85,6 @@ dependencies:
qr_flutter: ^3.2.0 qr_flutter: ^3.2.0
#选择器 #选择器
flutter_picker: ^1.1.5 flutter_picker: ^1.1.5
#加载动画
loading_animations: ^2.1.0
#高德地图 #高德地图
amap_map_fluttify: amap_map_fluttify:
amap_location_fluttify: amap_location_fluttify:
@ -98,6 +96,8 @@ dependencies:
fluwx: ^2.3.0 fluwx: ^2.3.0
get: get:
velocity_x: ^1.3.1 velocity_x: ^1.3.1
hive:
hive_flutter:
dev_dependencies: dev_dependencies:
flutter_test: flutter_test:

Loading…
Cancel
Save