|
|
|
@ -14,16 +14,16 @@ class _ExampleButtonState extends State<ExampleButton> {
|
|
|
|
|
return ASScaffold(
|
|
|
|
|
title: 'Button',
|
|
|
|
|
body: ListView(
|
|
|
|
|
children: [ ASButton.delete(title: '删除订单',onpressed: (){},),
|
|
|
|
|
ASButton.info(title: '删除订单',onpressed: (){},),
|
|
|
|
|
ASButton.warn(title: '删除订单',onpressed: (){},),
|
|
|
|
|
ASButton.opration(title: '删除订单',onpressed: (){},),
|
|
|
|
|
children: [ ASButton.delete(title: '删除订单',onPressed: (){},),
|
|
|
|
|
ASButton.info(title: '删除订单',onPressed: (){},),
|
|
|
|
|
ASButton.warn(title: '删除订单',onPressed: (){},),
|
|
|
|
|
ASButton.opration(title: '删除订单',onPressed: (){},),
|
|
|
|
|
SizedBox(height: 12.w),
|
|
|
|
|
ASLongButton.solid(title: '确认',onpressed: (){},),
|
|
|
|
|
ASLongButton.hollow(title: '确认',onpressed: (){},),
|
|
|
|
|
ASLongButton.solid(title: '确认',onPressed: (){},),
|
|
|
|
|
ASLongButton.hollow(title: '确认',onPressed: (){},),
|
|
|
|
|
Padding(
|
|
|
|
|
padding: EdgeInsets.symmetric(horizontal: 100.w),
|
|
|
|
|
child: ASLongButton.solid(title: 'null',onpressed:(){} ),
|
|
|
|
|
child: ASLongButton.solid(title: 'null',onPressed:(){} ),
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|