forked from lxm_flutter/FlutterUnit
43 lines
1.3 KiB
Dart
43 lines
1.3 KiB
Dart
import 'package:flutter/material.dart';
|
|
|
|
/// create by 张风捷特烈 on 2020-03-25
|
|
/// contact me by email 1981462002@qq.com
|
|
/// 说明:
|
|
// {
|
|
// "widgetId": 133,
|
|
// "name": 'SimpleDialogOption基本使用',
|
|
// "priority": 1,
|
|
// "subtitle":
|
|
// "【child】 : 子组件 【Widget】\n"
|
|
// "【onPressed】 : 点击事件 【Function()】",
|
|
// }
|
|
class CustomSimpleDialogOption extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Column(
|
|
children: <Widget>[
|
|
Container(
|
|
alignment: Alignment.center,
|
|
width: double.infinity,
|
|
height: 50,
|
|
margin: EdgeInsets.all(5),
|
|
color: Colors.grey.withAlpha(33),
|
|
child: SimpleDialogOption(
|
|
onPressed: () => Navigator.of(context).pushNamed('AboutMePage'),
|
|
child: Text('张风捷特烈')),
|
|
),
|
|
Container(
|
|
height: 50,
|
|
alignment: Alignment.center,
|
|
width: double.infinity,
|
|
color: Colors.grey.withAlpha(33),
|
|
margin: EdgeInsets.all(5),
|
|
child: SimpleDialogOption(
|
|
onPressed: () => Navigator.of(context).pushNamed('AboutMePage'),
|
|
child: Text('百里·巫缨')),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|