git-touch-android-ios-app/lib/models/theme.dart

231 lines
6.5 KiB
Dart
Raw Normal View History

import 'dart:io';
2019-09-23 11:08:51 +02:00
import 'dart:async';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
2019-09-23 11:08:51 +02:00
import 'package:git_touch/widgets/picker.dart';
import 'package:shared_preferences/shared_preferences.dart';
class DialogOption<T> {
final T value;
final Widget widget;
DialogOption({this.value, this.widget});
}
2019-09-19 15:10:50 +02:00
class AppThemeType {
static const material = 0;
static const cupertino = 1;
2019-09-19 15:10:50 +02:00
static const values = [AppThemeType.material, AppThemeType.cupertino];
}
class ThemeModel with ChangeNotifier {
static const storageKey = 'theme';
int _theme;
int get theme => _theme;
bool get ready => _theme != null;
init() async {
var prefs = await SharedPreferences.getInstance();
int v = prefs.getInt(storageKey);
print('read theme: $v');
2019-09-19 15:10:50 +02:00
if (AppThemeType.values.contains(v)) {
_theme = v;
} else if (Platform.isIOS) {
2019-09-19 15:10:50 +02:00
_theme = AppThemeType.cupertino;
} else {
2019-09-19 15:10:50 +02:00
_theme = AppThemeType.material;
}
notifyListeners();
}
Future<void> setTheme(int v) async {
SharedPreferences prefs = await SharedPreferences.getInstance();
_theme = v;
await prefs.setInt(storageKey, v);
print('write theme: $v');
notifyListeners();
}
2019-09-23 12:13:21 +02:00
pushRoute(
BuildContext context,
WidgetBuilder builder, {
bool fullscreenDialog = false,
}) {
switch (theme) {
2019-09-19 15:10:50 +02:00
case AppThemeType.cupertino:
2019-09-23 12:13:21 +02:00
return Navigator.of(context).push(CupertinoPageRoute(
builder: builder,
fullscreenDialog: fullscreenDialog,
));
default:
2019-09-23 12:13:21 +02:00
return Navigator.of(context).push(MaterialPageRoute(
builder: builder,
fullscreenDialog: fullscreenDialog,
));
}
}
2019-09-23 12:13:21 +02:00
pushReplacementRoute(BuildContext context, WidgetBuilder builder) {
switch (theme) {
case AppThemeType.cupertino:
return Navigator.of(context)
.pushReplacement(CupertinoPageRoute(builder: builder));
default:
return Navigator.of(context)
.pushReplacement(MaterialPageRoute(builder: builder));
}
}
Future<bool> showConfirm(BuildContext context, String text) {
switch (theme) {
2019-09-19 15:10:50 +02:00
case AppThemeType.cupertino:
return showCupertinoDialog(
context: context,
builder: (context) {
return CupertinoAlertDialog(
title: Text(text),
actions: <Widget>[
CupertinoDialogAction(
child: const Text('cancel'),
isDefaultAction: true,
onPressed: () {
Navigator.pop(context, false);
},
),
CupertinoDialogAction(
child: const Text('OK'),
onPressed: () {
Navigator.pop(context, true);
},
),
],
);
},
);
default:
return showDialog(
context: context,
builder: (BuildContext context) {
return AlertDialog(
content: Text(
text,
// style: dialogTextStyle
),
actions: <Widget>[
FlatButton(
child: const Text('CANCEL'),
onPressed: () {
Navigator.pop(context, false);
},
),
FlatButton(
child: const Text('OK'),
onPressed: () {
Navigator.pop(context, true);
},
)
],
);
},
);
}
}
Future<T> showDialogOptions<T>(
BuildContext context, List<DialogOption<T>> options) {
var title = Text('Pick your reaction');
var cancelWidget = Text('Cancel');
switch (theme) {
2019-09-19 15:10:50 +02:00
case AppThemeType.cupertino:
return showCupertinoDialog<T>(
context: context,
builder: (BuildContext context) {
return CupertinoAlertDialog(
title: title,
actions: options.map((option) {
return CupertinoDialogAction(
child: option.widget,
onPressed: () {
Navigator.pop(context, option.value);
},
);
}).toList()
..add(
CupertinoDialogAction(
child: cancelWidget,
isDestructiveAction: true,
onPressed: () {
Navigator.pop(context, null);
},
),
),
);
},
);
default:
return showDialog(
context: context,
builder: (BuildContext context) {
return SimpleDialog(
title: title,
children: options.map<Widget>((option) {
return SimpleDialogOption(
child: option.widget,
onPressed: () {
Navigator.pop(context, option.value);
},
);
}).toList()
..add(SimpleDialogOption(
child: cancelWidget,
onPressed: () {
Navigator.pop(context, null);
},
)),
);
},
);
}
}
2019-09-23 11:08:51 +02:00
static Timer _debounce;
showPicker(BuildContext context, PickerGroupItem<String> groupItem) async {
switch (theme) {
case AppThemeType.cupertino:
2019-09-28 18:25:14 +02:00
default:
2019-09-29 09:02:06 +02:00
await showCupertinoModalPopup(
2019-09-23 11:08:51 +02:00
context: context,
builder: (context) {
return Container(
2019-09-28 18:25:14 +02:00
height: 216,
2019-09-23 11:08:51 +02:00
child: CupertinoPicker(
backgroundColor: CupertinoColors.white,
children: groupItem.items.map((v) => Text(v.text)).toList(),
itemExtent: 40,
scrollController: FixedExtentScrollController(
initialItem: groupItem.items
.toList()
.indexWhere((v) => v.value == groupItem.value)),
onSelectedItemChanged: (index) {
2019-09-29 09:02:06 +02:00
if (_debounce?.isActive ?? false) {
_debounce.cancel();
}
2019-09-23 11:08:51 +02:00
_debounce = Timer(const Duration(milliseconds: 500), () {
2019-09-29 09:02:06 +02:00
groupItem.onChange(groupItem.items[index].value);
2019-09-23 11:08:51 +02:00
});
},
),
);
},
);
}
}
}