| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269 |
- import 'package:flustars/flustars.dart';
- import 'package:flutter/cupertino.dart';
- import 'package:flutter/material.dart';
- void main() => runApp(new MyApp());
- class MyApp extends StatefulWidget {
- @override
- _MyAppState createState() => new _MyAppState();
- }
- class _MyAppState extends State<MyApp> {
- @override
- void initState() {
- super.initState();
- /// 配置设计稿尺寸
- /// 如果设计稿尺寸默认配置一致,无需该设置。默认 width:360.0 / height:640.0 / density:3.0
- /// Configuration design draft size.
- /// If the default configuration of design draft size is the same, this setting is not required. default width:360.0 / height:640.0 / density:3.0
- setDesignWHD(360.0, 640, density: 3);
- }
- @override
- Widget build(BuildContext context) {
- return new MaterialApp(
- home: new MainPage(),
- );
- }
- }
- class MainPage extends StatefulWidget {
- @override
- State<StatefulWidget> createState() {
- return new MainPageState();
- }
- }
- /// 在MainPage使用依赖不context方法获取屏幕参数及适配,需要build方法内调用[MediaQuery.of(context)]。
- /// 或者使用依赖context方法获取屏幕参数及适配。
- /// In MainPage, the dependency-free context method is used to obtain screen parameters and adaptions, which requires a call to [MediaQuery. of (context)] within the build method.
- /// Or use context-dependent methods to obtain screen parameters and adaptions.
- class MainPageState extends State<MainPage> {
- @override
- Widget build(BuildContext context) {
- /// 如果使用依赖不context方法获取屏幕参数及适配,需要调用此方法。
- /// If you use a dependent context-free method to obtain screen parameters and adaptions, you need to call this method.
- MediaQuery.of(context);
- double statusBar = ScreenUtil.getInstance().statusBarHeight;
- double width = ScreenUtil.getInstance().screenWidth;
- double height = ScreenUtil.getInstance().screenHeight;
- print("MainPage statusBar: $statusBar, width: $width, height: $height");
- return new Scaffold(
- // 一个不需要GlobalKey就可以openDrawer的AppBar
- appBar: new MyAppBar(
- leading: ClipOval(
- child: new Image.asset(('assets/images/ali_connors.png')),
- ),
- title: const Text('Flustars Demos'),
- centerTitle: true,
- actions: <Widget>[
- new IconButton(
- icon: new Icon(Icons.search),
- onPressed: () {
- Navigator.push(
- context,
- new CupertinoPageRoute<void>(
- builder: (ctx) => new SecondPage()));
- },
- ),
- ],
- ),
- body: new Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: <Widget>[
- new Container(
- width: 360.0,
- height: 50,
- color: Colors.grey,
- child: new Center(
- child: new Text(
- "未适配宽",
- style: new TextStyle(fontSize: 24.0),
- ),
- ),
- ),
- new Container(
- width: ScreenUtil.getInstance().getWidth(360.0),
- height: 50,
- color: Colors.grey,
- child: new Center(
- child: new Text(
- "已适配宽",
- style: new TextStyle(fontSize: 24.0),
- ),
- ),
- ),
- new Container(
- width: 100,
- height: 100,
- color: Colors.grey,
- child: new Center(
- child: new Text(
- "你好你好你好",
- style: new TextStyle(fontSize: 24.0),
- ),
- ),
- ),
- new Container(
- margin: EdgeInsets.only(top: 10.0),
- width: ScreenUtil.getInstance().getWidth(100.0),
- height: ScreenUtil.getInstance().getWidth(100.0),
- color: Colors.grey,
- child: new Center(
- child: new Text(
- "你好你好你好",
- style: new TextStyle(
- fontSize: ScreenUtil.getInstance().getSp(24.0)),
- ),
- ),
- ),
- ],
- ),
- drawer: new MyDrawer(),
- );
- }
- }
- class MyDrawer extends StatelessWidget {
- @override
- Widget build(BuildContext context) {
- double statusBar = ScreenUtil.getInstance().statusBarHeight;
- double width = ScreenUtil.getInstance().screenWidth;
- double height = ScreenUtil.getInstance().screenHeight;
- print("SecondPage statusBar: $statusBar, width: $width, height: $height");
- return new Container(
- color: Colors.white,
- width: ScreenUtil.getInstance().getWidth(240),
- child: new ListView(
- padding: EdgeInsets.zero,
- children: <Widget>[
- new Container(
- color: Colors.teal,
- padding:
- EdgeInsets.only(top: ScreenUtil.getInstance().statusBarHeight),
- child: new Center(
- child: new Text(
- "Sky24n",
- style: new TextStyle(fontSize: 16, color: Colors.white),
- ),
- ),
- height: 160,
- )
- ],
- ),
- );
- }
- }
- class SecondPage extends StatefulWidget {
- @override
- State<StatefulWidget> createState() {
- return new SecondPageState();
- }
- }
- class SecondPageState extends State<SecondPage> {
- @override
- void initState() {
- super.initState();
- _init();
- _initWithCtx();
- }
- void _init() {
- double screenWidth = ScreenUtil.getInstance().screenWidth;
- double screenHeight = ScreenUtil.getInstance().screenHeight;
- double screenDensity = ScreenUtil.getInstance().screenDensity;
- double statusBarHeight = ScreenUtil.getInstance().statusBarHeight;
- double bottomBarHeight = ScreenUtil.getInstance().bottomBarHeight;
- double appBarHeight = ScreenUtil.getInstance().appBarHeight;
- double adapterW100 = ScreenUtil.getInstance().getWidth(100);
- double adapterH100 = ScreenUtil.getInstance().getHeight(100);
- double adapterSp100 = ScreenUtil.getInstance().getSp(100);
- double adapterW100px = ScreenUtil.getInstance().getWidthPx(300);
- double adapterH100px = ScreenUtil.getInstance().getHeightPx(300);
- print("SecondPage _init screenWidth: $screenWidth, screenHeight: $screenHeight, screenDensity: $screenDensity" +
- ", statusBarHeight: $statusBarHeight, bottomBarHeight: $bottomBarHeight, appBarHeight: $appBarHeight" +
- ", adapterW100: $adapterW100, adapterH100: $adapterH100, adapterSp100: $adapterSp100" +
- ", adapterW100px: $adapterW100px, adapterH100px: $adapterH100px");
- }
- void _initWithCtx() {
- double screenWidth = ScreenUtil.getScreenW(context);
- double screenHeight = ScreenUtil.getScreenH(context);
- double screenDensity = ScreenUtil.getScreenDensity(context);
- double statusBarHeight = ScreenUtil.getStatusBarH(context);
- double bottomBarHeight = ScreenUtil.getBottomBarH(context);
- double adapterW100 = ScreenUtil.getScaleW(context, 100);
- double adapterH100 = ScreenUtil.getScaleH(context, 100);
- double adapterSp100 = ScreenUtil.getScaleSp(context, 100);
- Orientation orientation = ScreenUtil.getOrientation(context);
- print("SecondPage _initWithCtx screenWidth: $screenWidth, screenHeight: $screenHeight, screenDensity: $screenDensity" +
- ", statusBarHeight: $statusBarHeight, bottomBarHeight: $bottomBarHeight" +
- ", adapterW100: $adapterW100, adapterH100: $adapterH100, adapterSp100: $adapterSp100");
- }
- @override
- Widget build(BuildContext context) {
- double statusBar = ScreenUtil.getInstance().statusBarHeight;
- double width = ScreenUtil.getInstance().screenWidth;
- double height = ScreenUtil.getInstance().screenHeight;
- print("SecondPage statusBar: $statusBar, width: $width, height: $height");
- return new Scaffold(
- appBar: new AppBar(
- title: new Text("Second Page"),
- centerTitle: true,
- ),
- body: new Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: <Widget>[
- new Container(
- width: 100,
- height: 100,
- color: Colors.grey,
- child: new Center(
- child: new Text(
- "你好你好你好",
- style: new TextStyle(fontSize: 24.0),
- ),
- ),
- ),
- new Container(
- margin: EdgeInsets.only(top: 10.0),
- width: ScreenUtil.getInstance().getWidth(100.0),
- height: ScreenUtil.getInstance().getWidth(100.0),
- color: Colors.grey,
- child: new Center(
- child: new Text(
- "你好你好你好",
- style: new TextStyle(
- fontSize: ScreenUtil.getInstance().getSp(24.0)),
- ),
- ),
- ),
- new Container(
- margin: EdgeInsets.only(top: 10.0),
- width: ScreenUtil.getScaleW(context, 100.0),
- height: ScreenUtil.getScaleW(context, 100.0),
- color: Colors.grey,
- child: new Center(
- child: new Text(
- "你好你好你好",
- style: new TextStyle(
- fontSize: ScreenUtil.getScaleSp(context, 24.0)),
- ),
- ),
- ),
- ],
- ),
- );
- }
- }
|