2019-02-20 09:31:22 +01:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter/cupertino.dart';
|
2019-09-02 15:52:32 +02:00
|
|
|
import 'package:provider/provider.dart';
|
|
|
|
import 'package:git_touch/models/theme.dart';
|
2019-02-20 09:31:22 +01:00
|
|
|
|
2019-06-20 16:59:13 +02:00
|
|
|
class MyAction {
|
2019-02-20 09:31:22 +01:00
|
|
|
String text;
|
|
|
|
Function onPress;
|
|
|
|
|
2019-06-20 16:59:13 +02:00
|
|
|
MyAction({@required this.text, @required this.onPress});
|
2019-02-20 09:31:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
class ActionButton extends StatelessWidget {
|
|
|
|
final String title;
|
2019-06-20 16:59:13 +02:00
|
|
|
final List<MyAction> actions;
|
2019-02-20 09:31:22 +01:00
|
|
|
final IconData iconData;
|
|
|
|
|
|
|
|
ActionButton({
|
|
|
|
@required this.title,
|
|
|
|
@required this.actions,
|
|
|
|
this.iconData = Icons.more_vert,
|
|
|
|
});
|
|
|
|
|
|
|
|
void _onSelected(int value) {
|
|
|
|
if (value != null) {
|
|
|
|
actions[value].onPress();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2019-09-02 15:52:32 +02:00
|
|
|
switch (Provider.of<ThemeModel>(context).theme) {
|
2019-02-20 09:31:22 +01:00
|
|
|
case ThemeMap.cupertino:
|
|
|
|
return GestureDetector(
|
|
|
|
child: Icon(iconData, size: 24),
|
|
|
|
onTap: () async {
|
|
|
|
int value = await showCupertinoModalPopup<int>(
|
|
|
|
context: context,
|
|
|
|
builder: (BuildContext context) {
|
|
|
|
return CupertinoActionSheet(
|
|
|
|
title: Text(title),
|
|
|
|
actions: actions.asMap().entries.map((entry) {
|
|
|
|
return CupertinoActionSheetAction(
|
|
|
|
child: Text(entry.value.text),
|
|
|
|
onPressed: () {
|
|
|
|
Navigator.pop(context, entry.key);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}).toList(),
|
|
|
|
cancelButton: CupertinoActionSheetAction(
|
|
|
|
child: const Text('Cancel'),
|
|
|
|
isDefaultAction: true,
|
|
|
|
onPressed: () {
|
|
|
|
Navigator.pop(context);
|
|
|
|
},
|
|
|
|
),
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
_onSelected(value);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
default:
|
|
|
|
return PopupMenuButton<int>(
|
|
|
|
icon: Icon(iconData),
|
|
|
|
onSelected: _onSelected,
|
|
|
|
itemBuilder: (BuildContext context) {
|
|
|
|
return actions.asMap().entries.map((entry) {
|
|
|
|
return PopupMenuItem(
|
|
|
|
value: entry.key,
|
|
|
|
child: Text(entry.value.text),
|
|
|
|
);
|
|
|
|
}).toList();
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|