1
0
mirror of https://github.com/git-touch/git-touch synced 2025-02-08 23:58:46 +01:00

34 lines
827 B
Dart
Raw Normal View History

2019-01-31 15:23:52 +08:00
import 'package:flutter/material.dart';
import 'package:flutter/cupertino.dart';
2020-10-03 14:37:06 +08:00
import 'package:git_touch/models/theme.dart';
import 'package:provider/provider.dart';
2019-01-31 15:23:52 +08:00
class Loading extends StatelessWidget {
final bool more;
Loading({this.more = false});
2020-10-03 14:37:06 +08:00
Widget _buildIndicator(BuildContext context) {
switch (Provider.of<ThemeModel>(context).theme) {
case AppThemeType.cupertino:
return CupertinoActivityIndicator(radius: 12);
default:
return SizedBox(
width: 24,
height: 24,
child: CircularProgressIndicator(),
);
}
}
2019-01-31 15:23:52 +08:00
@override
Widget build(BuildContext context) {
2019-09-29 22:10:15 +08:00
return Center(
child: Padding(
padding: EdgeInsets.symmetric(vertical: more ? 20 : 100),
2020-10-03 14:37:06 +08:00
child: _buildIndicator(context),
2019-09-29 22:10:15 +08:00
),
);
2019-01-31 15:23:52 +08:00
}
}