2019-09-24 13:58:34 +02:00
|
|
|
import 'package:flutter/cupertino.dart';
|
2019-09-25 11:06:36 +02:00
|
|
|
import 'package:flutter/material.dart';
|
2019-09-24 13:58:34 +02:00
|
|
|
import 'package:git_touch/models/theme.dart';
|
2019-10-02 08:58:11 +02:00
|
|
|
import 'package:git_touch/scaffolds/common.dart';
|
2019-09-25 11:06:36 +02:00
|
|
|
import 'package:git_touch/scaffolds/utils.dart';
|
2019-09-24 13:58:34 +02:00
|
|
|
import 'package:provider/provider.dart';
|
|
|
|
|
2019-09-25 11:06:36 +02:00
|
|
|
class TabScaffold extends StatelessWidget {
|
|
|
|
final Widget title;
|
|
|
|
final Widget body;
|
2021-05-16 09:16:35 +02:00
|
|
|
final Widget? action;
|
2019-09-25 11:06:36 +02:00
|
|
|
final void Function() onRefresh;
|
2019-09-25 12:47:34 +02:00
|
|
|
final List<String> tabs;
|
|
|
|
final int activeTab;
|
|
|
|
final Function(int index) onTabSwitch;
|
2019-09-24 13:58:34 +02:00
|
|
|
|
|
|
|
TabScaffold({
|
2021-05-16 09:16:35 +02:00
|
|
|
required this.title,
|
|
|
|
required this.body,
|
2019-10-03 04:01:54 +02:00
|
|
|
this.action,
|
2021-05-16 09:16:35 +02:00
|
|
|
required this.onRefresh,
|
|
|
|
required this.tabs,
|
|
|
|
required this.activeTab,
|
|
|
|
required this.onTabSwitch,
|
2019-09-24 13:58:34 +02:00
|
|
|
});
|
|
|
|
|
2019-09-25 11:06:36 +02:00
|
|
|
Widget _buildTitle(BuildContext context) {
|
|
|
|
switch (Provider.of<ThemeModel>(context).theme) {
|
|
|
|
case AppThemeType.cupertino:
|
|
|
|
return DefaultTextStyle(
|
2019-11-05 10:45:08 +01:00
|
|
|
style: DefaultTextStyle.of(context).style.copyWith(fontSize: 14),
|
2020-10-08 08:38:33 +02:00
|
|
|
child: Row(
|
|
|
|
children: [
|
|
|
|
Expanded(
|
2021-05-16 09:16:35 +02:00
|
|
|
child: CupertinoSlidingSegmentedControl<int>(
|
2020-10-08 08:38:33 +02:00
|
|
|
groupValue: activeTab,
|
2021-05-16 09:16:35 +02:00
|
|
|
onValueChanged: (v) {
|
|
|
|
if (v == null) return;
|
|
|
|
onTabSwitch(v);
|
|
|
|
},
|
2020-10-08 08:38:33 +02:00
|
|
|
children: tabs.asMap().map((key, text) => MapEntry(
|
|
|
|
key,
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 8),
|
|
|
|
child: Text(text),
|
|
|
|
))),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
2019-09-25 11:06:36 +02:00
|
|
|
),
|
|
|
|
);
|
2019-09-24 14:35:37 +02:00
|
|
|
default:
|
2019-09-25 11:06:36 +02:00
|
|
|
return title;
|
2019-09-24 14:35:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-24 13:58:34 +02:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2019-09-25 11:06:36 +02:00
|
|
|
final scaffold = CommonScaffold(
|
|
|
|
title: _buildTitle(context),
|
|
|
|
body: RefreshWrapper(body: body, onRefresh: onRefresh),
|
2020-01-27 03:47:34 +01:00
|
|
|
// action: action, // TODO:
|
2019-09-25 11:06:36 +02:00
|
|
|
bottom: TabBar(
|
2019-09-25 12:47:34 +02:00
|
|
|
onTap: onTabSwitch,
|
|
|
|
tabs: tabs.map((text) => Tab(text: text.toUpperCase())).toList(),
|
2019-09-25 11:06:36 +02:00
|
|
|
),
|
|
|
|
);
|
|
|
|
|
2019-09-24 13:58:34 +02:00
|
|
|
switch (Provider.of<ThemeModel>(context).theme) {
|
|
|
|
case AppThemeType.cupertino:
|
2019-09-25 11:06:36 +02:00
|
|
|
return scaffold;
|
2019-09-24 13:58:34 +02:00
|
|
|
default:
|
|
|
|
return DefaultTabController(
|
2019-09-25 12:47:34 +02:00
|
|
|
length: tabs.length,
|
2019-09-25 11:06:36 +02:00
|
|
|
child: scaffold,
|
2019-09-24 13:58:34 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|