2019-09-25 11:06:36 +02:00
|
|
|
import 'package:flutter/cupertino.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:git_touch/models/theme.dart';
|
2019-09-29 10:39:30 +02:00
|
|
|
import 'package:git_touch/widgets/error_reload.dart';
|
2019-09-25 12:47:34 +02:00
|
|
|
import 'package:git_touch/widgets/loading.dart';
|
2019-09-25 11:06:36 +02:00
|
|
|
import 'package:provider/provider.dart';
|
|
|
|
|
|
|
|
class RefreshWrapper extends StatelessWidget {
|
|
|
|
final Widget body;
|
|
|
|
final void Function() onRefresh;
|
|
|
|
|
|
|
|
RefreshWrapper({
|
|
|
|
@required this.onRefresh,
|
|
|
|
@required this.body,
|
|
|
|
});
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
switch (Provider.of<ThemeModel>(context).theme) {
|
|
|
|
case AppThemeType.cupertino:
|
2019-09-28 15:40:42 +02:00
|
|
|
return CupertinoScrollbar(
|
|
|
|
child: CustomScrollView(
|
|
|
|
slivers: <Widget>[
|
|
|
|
CupertinoSliverRefreshControl(onRefresh: onRefresh),
|
|
|
|
SliverToBoxAdapter(child: body),
|
|
|
|
],
|
|
|
|
),
|
2019-09-25 11:06:36 +02:00
|
|
|
);
|
|
|
|
default:
|
|
|
|
return RefreshIndicator(
|
|
|
|
onRefresh: onRefresh,
|
2019-09-28 15:40:42 +02:00
|
|
|
child: Scrollbar(
|
|
|
|
child: SingleChildScrollView(child: body),
|
|
|
|
),
|
2019-09-25 11:06:36 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-09-25 12:47:34 +02:00
|
|
|
|
|
|
|
class ErrorLoadingWrapper extends StatelessWidget {
|
|
|
|
final String error;
|
|
|
|
final bool loading;
|
|
|
|
final void Function() reload;
|
|
|
|
final Widget Function() bodyBuilder;
|
|
|
|
|
|
|
|
ErrorLoadingWrapper({
|
|
|
|
@required this.error,
|
|
|
|
@required this.loading,
|
|
|
|
@required this.reload,
|
|
|
|
@required this.bodyBuilder,
|
|
|
|
});
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
if (error.isNotEmpty) {
|
2019-09-29 10:39:30 +02:00
|
|
|
return ErrorReload(text: error, onTap: reload);
|
2019-09-25 12:47:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (loading) {
|
|
|
|
return Loading();
|
|
|
|
}
|
|
|
|
|
|
|
|
return bodyBuilder();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Widget wrapBuilder(Widget Function() builder) {
|
|
|
|
if (builder == null) return null;
|
|
|
|
return builder();
|
|
|
|
}
|