1
0
mirror of https://github.com/git-touch/git-touch synced 2025-02-13 10:00:43 +01:00

54 lines
1.5 KiB
Dart
Raw Normal View History

2019-09-24 19:58:34 +08:00
import 'package:flutter/cupertino.dart';
2019-10-02 14:58:11 +08:00
import 'package:git_touch/scaffolds/common.dart';
2019-09-25 17:06:36 +08:00
import 'package:git_touch/scaffolds/utils.dart';
2019-09-24 19:58:34 +08:00
2019-09-25 17:06:36 +08:00
class TabScaffold extends StatelessWidget {
2019-09-24 19:58:34 +08:00
2022-09-07 00:28:12 +08:00
const TabScaffold({
2021-05-16 15:16:35 +08:00
required this.title,
required this.body,
2019-10-03 10:01:54 +08:00
this.action,
2021-05-16 15:16:35 +08:00
required this.onRefresh,
required this.tabs,
required this.activeTab,
required this.onTabSwitch,
2019-09-24 19:58:34 +08:00
});
2022-09-22 00:28:21 +08:00
final Widget title;
final Widget body;
final Widget? action;
final void Function() onRefresh;
final List<String> tabs;
final int activeTab;
final Function(int index) onTabSwitch;
2019-09-24 19:58:34 +08:00
@override
Widget build(BuildContext context) {
2022-09-17 20:35:45 +08:00
return CommonScaffold(
title: DefaultTextStyle(
style: DefaultTextStyle.of(context).style.copyWith(fontSize: 14),
child: Row(
children: [
Expanded(
child: CupertinoSlidingSegmentedControl<int>(
groupValue: activeTab,
onValueChanged: (v) {
if (v == null) return;
onTabSwitch(v);
},
children: tabs.asMap().map((key, text) => MapEntry(
key,
Padding(
padding: const EdgeInsets.symmetric(horizontal: 8),
child: Text(text),
))),
),
),
],
),
),
2019-09-25 17:06:36 +08:00
body: RefreshWrapper(body: body, onRefresh: onRefresh),
2020-01-27 10:47:34 +08:00
// action: action, // TODO:
2019-09-25 17:06:36 +08:00
);
2019-09-24 19:58:34 +08:00
}
}