07. 手机适配

使用第三方依赖 flutter_screenutil

使用

import 'package:flutter_screenutil/flutter_screenutil.dart';
void main() {
 runApp(
   ScreenUtilInit( // 嵌套主组件
     designSize: const Size(1194, 834), // 设计稿的宽度和高度
     minTextAdapt: true,
     splitScreenMode: true,
     builder:(context,child){
       return GetMaterialApp(
         title: "Application",
         defaultTransition:Transition.rightToLeft,
         initialRoute: AppPages.INITIAL,
         getPages: AppPages.routes,
      );
    }
  )
);
}

在组件中使用

import 'package:flutter_screenutil/flutter_screenutil.dart';

class MyScreenUtil {
 static width(num val){return val.w;}
 static height(num val){return val.h;}
 static fontSize(num val){return val.sp;}
 static radius(num val){return val.r;}
 static getScreenWidth(){return 1.sw;}// 获取屏幕高度
 static getScreenHeight(){return 1.sh;} // 获取屏幕宽度
 static getStatusBarHeight(){
   return ScreenUtil().statusBarHeight;
}
}
暂无评论

发送评论 编辑评论


				
|´・ω・)ノ
ヾ(≧∇≦*)ゝ
(☆ω☆)
(╯‵□′)╯︵┴─┴
 ̄﹃ ̄
(/ω\)
∠( ᐛ 」∠)_
(๑•̀ㅁ•́ฅ)
→_→
୧(๑•̀⌄•́๑)૭
٩(ˊᗜˋ*)و
(ノ°ο°)ノ
(´இ皿இ`)
⌇●﹏●⌇
(ฅ´ω`ฅ)
(╯°A°)╯︵○○○
φ( ̄∇ ̄o)
ヾ(´・ ・`。)ノ"
( ง ᵒ̌皿ᵒ̌)ง⁼³₌₃
(ó﹏ò。)
Σ(っ °Д °;)っ
( ,,´・ω・)ノ"(´っω・`。)
╮(╯▽╰)╭
o(*////▽////*)q
>﹏<
( ๑´•ω•) "(ㆆᴗㆆ)
😂
😀
😅
😊
🙂
🙃
😌
😍
😘
😜
😝
😏
😒
🙄
😳
😡
😔
😫
😱
😭
💩
👻
🙌
🖕
👍
👫
👬
👭
🌚
🌝
🙈
💊
😶
🙏
🍦
🍉
😣
Source: github.com/k4yt3x/flowerhd
颜文字
Emoji
小恐龙
花!
上一篇
下一篇