软件编程
位置:首页>> 软件编程>> flutter编程>> Android开发组件flutter的20个常用技巧示例总结

Android开发组件flutter的20个常用技巧示例总结

作者:编程小龙  发布时间:2023-06-19 17:25:23 

标签:Android,组件,flutter

 1.map遍历快速实现边距,文字自适应改变大小

Container(
   // padding: EdgeInsets.symmetric(horizontal: 50),
   // constraints: BoxConstraints.tightFor(width: 200.0, height: 150.0),
   color: Colors.white,
   child: Align(
       alignment: Alignment.center,
       child: FittedBox( // 当一行放不下时会自适应调整组件大小
           child: Row(
               children: [
                   ElevatedButton(onPressed: () => {}, child: Text("电塔")),
                   ElevatedButton(onPressed: () => {}, child: Text("嘿嘿")),
                   ElevatedButton(onPressed: () => {}, child: Text("哟西")),
                   ElevatedButton(onPressed: () => {}, child: Text("是蚕丝")),
               ]
               .map((e) => Padding( // 遍历设置组件左内边距
                   padding: EdgeInsets.only(left: 30), child: e))
               .toList()),
       ),
   ));

2.使用SafeArea 添加边距

在页面的最外层组件中包裹一个SafeArea

SafeArea( // 实质就是添加一个边距,解决ios最外边弧角导致的被遮挡
       minimum: EdgeInsets.all(30),
   chird:...
   )

3.布局思路

1.堆叠:使用stack

2.竖直可滚动:listView

3.多格,超出自动换行:wrap

4.获取当前屏幕的大小

Wrap(
   children: dataList
   .map((item) => Container(
       decoration: BoxDecoration(color: Colors.red),
       width: (MediaQuery.of(context).size.width - 10 * 3) / 2, // 适配屏幕一行放两个,并且三个缝隙间隔
   ))
   .toList(),
)

5.文本溢出显示省略号

Text(
   data.title,
   maxLines: 1,
   overflow: TextOverflow.ellipsis,
),

6.一个圆角带搜索icon的搜索框案例

Expanded(
   child: Container(
       height: 34,
       decoration: BoxDecoration(
           color: Colors.grey[200],
           borderRadius: BorderRadius.circular(17)),
       margin: const EdgeInsets.only(right: 10),
       child: const TextField(
           decoration: InputDecoration(
               hintText: "请输入搜索词",
               hintStyle: TextStyle(color: Colors.grey, fontSize: 14),
               contentPadding: EdgeInsets.only(top: 1, left: -10),
               border: InputBorder.none,
               icon: Padding(
                   padding: EdgeInsets.only(left: 10, top: 5),
                   child: Icon(
                       Icons.search,
                       size: 18,
                       color: Colors.grey,
                   )),
               suffixIcon: Icon(
                   Icons.close,
                   size: 18,
               ))),
   )),

7.修改按钮的背景色

ElevatedButton(
   onPressed: () {
       CommonToast.showToast("退出登录");
   },
   style: ButtonStyle(
       backgroundColor: MaterialStateProperty.all<Color>(Colors.red),
   ),
   child: const Text(
       '退出登录',
       style: TextStyle(color: Colors.white),
   )
),
TextButton(
 style: TextButton.styleFrom(primary: Colors.green),
)

8.tab切换实例

Android开发组件flutter的20个常用技巧示例总结

import 'package:flutter/material.dart';
import 'package:hook_up_rent/pages/home/tab_search/data_list.dart';
import 'package:hook_up_rent/widgets/room_list_item_widget.dart';
class RoomManagePage extends StatelessWidget {
 const RoomManagePage({Key? key}) : super(key: key);
 @override
 Widget build(BuildContext context) {
   return DefaultTabController(
       length: 2,
       initialIndex: 0,
       child: Scaffold(
         appBar: AppBar(
           title: Text("房屋管理"),
           centerTitle: true,
           bottom: TabBar(
             tabs: [
               Tab(
                 text: "空置",
               ),
               Tab(
                 text: "已租",
               )
             ],
           ),
         ),
         body: TabBarView(
           children: [
             ListView(
               children:
                   dataList.map((item) => RoomListItemWidget(item)).toList(),
             ),
             ListView(
               children:
                   dataList.map((item) => RoomListItemWidget(item)).toList(),
             )
           ],
         ),
       ));
 }
}

9.点击事件组件点击空白区域不触发点击

GestureDetector(
 behavior: HitTestBehavior.translucent, // 加上即可

10.使用主题色

var buttonTextStyle = TextStyle(
   color: Theme.of(context).primaryColor,
   fontWeight: FontWeight.w600);

11.往安卓模拟器中传图片

往模拟器的sdcard目录下的DCIM目录里面丢图片即可,然后点一下手机上的图片应用加载一下即可

Android开发组件flutter的20个常用技巧示例总结

12.控制text的最大行数显示影藏文字

Text(
   data.subTitle ?? '暂无房屋概况',
   maxLines: showAllText ? null : 2,
),

13.去掉默认的抽屉图标

给appbar添加此属性即可

actions: [Container()], // 填一个空元素占位,可以填充掉默认的抽屉图标,此时通过左右滑动打开对应抽屉

14.图片占满屏

Container(
   decoration: BoxDecoration(
       image: DecorationImage(
           image: AssetImage('static/images/loading.jpg'),
           fit: BoxFit.fill)),
);

15.倒计时

@override
void initState() {
   super.initState();
   ///循环执行
   ///间隔1秒
   _timer = Timer.periodic(Duration(milliseconds: 1000), (timer) {
       ///自增
       curentTimer++;
       ///到5秒后停止
       if (curentTimer == 5) {
           _timer.cancel();
       }
       setState(() {});
   });
}
@override
void dispose() {
   ///取消计时器
   _timer.cancel();
   super.dispose();
}

16.固定底部

1.当内容不会滚动时可以直接在固定底部的组件上方加一个spacer组件即可。

2.当内容会滚动时需要使用epanded,且该组件只能放置在row、column等组件【不能放在listview,container,stack&hellip;】如下所示:

Android开发组件flutter的20个常用技巧示例总结

17.添加阴影

// 直接给Container加上如下属性即可
decoration: BoxDecoration(
   color: Colors.white,
   borderRadius: BorderRadius.circular(8.0),
   boxShadow: [
       BoxShadow(
           color: Colors.black12,
           offset: Offset(0.0, 15.0), //阴影xy轴偏移量
           blurRadius: 15.0, //阴影模糊程度
           spreadRadius: 1.0 //阴影扩散程度
       )
   ]),

18.隐藏键盘

// 关闭键盘
void _hideKeyboard() {
   FocusScopeNode currentFocus = FocusScope.of(context);
   if (!currentFocus.hasPrimaryFocus && currentFocus.focusedChild != null) {
       /// 取消焦点,相当于关闭键盘
       FocusManager.instance.primaryFocus!.unfocus();
   }
}
// 在页面最外层包裹一个点击事件
GestureDetector(
       onTap: _hideKeyboard,
       child: Scaffold(

19.获取父级组件大小

在原来的build方法中返回组件外面套一层layoutBuilder即可

return LayoutBuilder(builder: (context, constrains) {
     var maxWidth = constrains.maxWidth; // 获取父级容器大小
   return Wrap()
}

20.点击事件主动冒泡

GestureDetector组件会阻止事件冒泡,此时用Listenner组件替换即可

Listener(
// 使用listener事件能够继续传递
 onPointerDown: (event) {
   setState(() {
     isExpand = !isExpand;
   });
 },
 child: Text('点我'),
),

来源:https://blog.csdn.net/qq_42365534/article/details/123599492

0
投稿

猜你喜欢

手机版 软件编程 asp之家 www.aspxhome.com