release
This commit is contained in:
@@ -496,6 +496,8 @@ class HistoryPage extends StatelessWidget {
|
||||
int index,
|
||||
Map<String, dynamic> item,
|
||||
) {
|
||||
final themeController = Get.find<ThemeController>();
|
||||
final primaryColor = themeController.currentThemeColor;
|
||||
showCupertinoModalPopup(
|
||||
context: context,
|
||||
builder: (BuildContext context) => CupertinoActionSheet(
|
||||
@@ -512,14 +514,14 @@ class HistoryPage extends StatelessWidget {
|
||||
CupertinoActionSheetAction(
|
||||
onPressed: () {
|
||||
Get.back();
|
||||
Get.snackbar('提示', '分享功能开发中...');
|
||||
Get.snackbar('提示', '分享功能开发中...', colorText: primaryColor);
|
||||
},
|
||||
child: const Text('分享'),
|
||||
),
|
||||
CupertinoActionSheetAction(
|
||||
onPressed: () {
|
||||
Get.back();
|
||||
Get.snackbar('提示', '查看详情功能开发中...');
|
||||
Get.snackbar('提示', '查看详情功能开发中...', colorText: primaryColor);
|
||||
},
|
||||
child: const Text('查看详情'),
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user