Files
2022-03-26 16:41:34 +08:00

31 lines
971 B
Dart

import 'package:flutter/material.dart';
/// create by 张风捷特烈 on 2020-03-25
/// contact me by email 1981462002@qq.com
/// 说明:
// {
// "widgetId": 23,
// "priority": 2,
// "name": "MaterialButton长按事件",
// "subtitle": "【highlightColor】: 长按高亮色 【Color】\n"
// "【onLongPress】: 长按事件 【Function】",
// }
class LongPressMaterialButton extends StatelessWidget {
const LongPressMaterialButton({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialButton(
height: 40,
elevation: 5,
color: Colors.blue,
highlightColor: Colors.green,
textColor: Colors.white,
padding: const EdgeInsets.all(8),
child: const Text("MaterialButton"),
onLongPress: () => Navigator.of(context).pushNamed('AboutMePage'),
onPressed: () => Navigator.of(context).pushNamed('AboutMePage'));
}
}