You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
111 lines
3.2 KiB
111 lines
3.2 KiB
import 'package:ansu_ui/ansu_ui.dart';
|
|
import 'package:example/codeviewer/code_segments.dart';
|
|
import 'package:example/component/example_scaffold.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
|
|
class ExampleNumExt extends StatefulWidget {
|
|
ExampleNumExt({Key key}) : super(key: key);
|
|
|
|
@override
|
|
_ExampleNumExtState createState() => _ExampleNumExtState();
|
|
}
|
|
|
|
class _ExampleNumExtState extends State<ExampleNumExt> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return ExampleScaffold(
|
|
title: 'Num Ext',
|
|
text: (context) => CodeSegments.numExt(context),
|
|
children: [
|
|
// BEGIN numExt
|
|
//Comma
|
|
ListTile(title: Text('Comma')),
|
|
ListTile(
|
|
leading: Chip(label: Text('.comma')),
|
|
title: Text('1000'),
|
|
subtitle: Text(1000.comma()),
|
|
),
|
|
ListTile(
|
|
leading: Chip(label: Text('.comma')),
|
|
title: Text('1000000'),
|
|
subtitle: Text(1000000.comma()),
|
|
),
|
|
ListTile(
|
|
leading: Chip(label: Text('.comma')),
|
|
title: Text('100.00'),
|
|
subtitle: Text(100.00.comma()),
|
|
),
|
|
ListTile(
|
|
leading: Chip(label: Text('.comma')),
|
|
title: Text('0.123456'),
|
|
subtitle: Text(0.123456.comma()),
|
|
),
|
|
ListTile(
|
|
leading: Chip(label: Text('.comma')),
|
|
title: Text('123456.789'),
|
|
subtitle: Text(123456.789.comma()),
|
|
),
|
|
ListTile(
|
|
leading: Chip(label: Text('.comma')),
|
|
title: Text('123456.7899999'),
|
|
subtitle: Text(123456.7899999.comma(fixed: -1)),
|
|
trailing: Chip(label: Text('without Fixed')),
|
|
),
|
|
//SizedBox
|
|
ListTile(title: Text('SizedBox')),
|
|
ListTile(
|
|
leading: Chip(label: Text('.wb')),
|
|
title: Text('Width Box'),
|
|
subtitle: Text('40.wb'),
|
|
trailing: Container(
|
|
height: 2.w,
|
|
width: 40.w,
|
|
color: Colors.red,
|
|
),
|
|
),
|
|
ListTile(
|
|
leading: Chip(label: Text('.hb')),
|
|
title: Text('Height Box'),
|
|
subtitle: Text('40.hb'),
|
|
trailing: Container(
|
|
height: 40.w,
|
|
width: 2.w,
|
|
color: Colors.red,
|
|
),
|
|
),
|
|
//Radius
|
|
ListTile(title: Text('Radius')),
|
|
ListTile(
|
|
leading: Chip(label: Text('.radius')),
|
|
title: Text('Radius Gen'),
|
|
subtitle: Text('10.radius'),
|
|
trailing: Container(
|
|
height: 30.w,
|
|
width: 30.w,
|
|
decoration: BoxDecoration(
|
|
borderRadius: 10.radius,
|
|
color: Colors.pink,
|
|
),
|
|
),
|
|
),
|
|
//EdgeInsets
|
|
ListTile(title: Text('EdgeInsets')),
|
|
ListTile(
|
|
leading: Chip(label: Text('.edge')),
|
|
title: Text('EdgeInsets Gen'),
|
|
subtitle: Text('10.edge'),
|
|
trailing: Container(
|
|
height: 30.w,
|
|
width: 30.w,
|
|
color: Colors.red,
|
|
padding: 10.edge,
|
|
child: Container(color: Colors.green),
|
|
),
|
|
),
|
|
// END
|
|
],
|
|
);
|
|
}
|
|
}
|