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.
ansu_ui/example/lib/main_extention.dart

51 lines
1.2 KiB

import 'package:example/data/extension/example_num_ext.dart';
import 'package:example/data/extension/example_string_ext.dart';
import 'package:flutter/material.dart';
import 'package:ansu_ui/ansu_ui.dart';
import 'package:get/get.dart';
class MainExtention extends StatefulWidget {
MainExtention({Key key}) : super(key: key);
@override
_MainExtentionState createState() => _MainExtentionState();
}
class _MainExtentionState extends State<MainExtention> {
_innerButton({
VoidCallback onPressed,
Widget child,
Widget icon,
}) {
return TextButton(
onPressed: onPressed,
child: Row(
children: [
Expanded(child: icon),
child,
Spacer(),
],
),
);
}
@override
Widget build(BuildContext context) {
return ListView(
padding: EdgeInsets.all(16.w),
children: [
_innerButton(
onPressed: () => Get.to(ExampleNumExt()),
child: Text('Num Ext'),
icon: Icon(Icons.filter_9),
),
_innerButton(
onPressed: () => Get.to(ExampleStringExt()),
child: Text('String Ext'),
icon: Icon(Icons.text_fields),
),
],
);
}
}