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.
62 lines
1.5 KiB
62 lines
1.5 KiB
import 'package:ansu_ui/ansu_ui.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:get/get.dart';
|
|
|
|
import 'example_scaffold.dart';
|
|
import 'example_button.dart';
|
|
import 'example_tab_bar.dart';
|
|
import 'example_numeric_button.dart';
|
|
|
|
void main() {
|
|
runApp(MyApp());
|
|
}
|
|
|
|
class MyApp extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return GetMaterialApp(
|
|
title: 'Flutter Demo',
|
|
home: _ScreenAdapter(),
|
|
);
|
|
}
|
|
}
|
|
|
|
class _ScreenAdapter extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
ScreenUtil.init(context,
|
|
designSize: Size(375, 812), allowFontScaling: false);
|
|
return MyHomePage();
|
|
}
|
|
}
|
|
|
|
class MyHomePage extends StatefulWidget {
|
|
MyHomePage({Key key}) : super(key: key);
|
|
|
|
@override
|
|
_MyHomePageState createState() => _MyHomePageState();
|
|
}
|
|
|
|
class _MyHomePageState extends State<MyHomePage> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return ASScaffold(
|
|
title: '安速组件',
|
|
body: ListView(
|
|
padding: EdgeInsets.all(16.w),
|
|
children: [
|
|
ASButton.info(
|
|
title: 'Button', onpressed: () => Get.to(ExampleButton())),
|
|
ASButton.info(
|
|
title: 'Scaffold', onpressed: () => Get.to(ExampleScaffold())),
|
|
ASButton.info(
|
|
title: 'TabBar', onpressed: () => Get.to(ExampleTabBar())),
|
|
ASButton.info(
|
|
title: '数量选择器 NumericButton',
|
|
onpressed: () => Get.to(ExampleNumericButton())),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|