会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
鲤斌
博客园
首页
新随笔
联系
订阅
管理
2024年9月4日
flutter瀑布流布局
摘要: 依赖 flutter_staggered_grid_view: ^0.7.0 #flutter瀑布流 代码例子 Widget _bestContent() { return Obx(() => Container( child: Column( children: [ Container( colo
阅读全文
posted @ 2024-09-04 01:55 鲤斌
阅读(42)
评论(0)
推荐(0)
编辑
2024年8月28日
carousel_slider 轮播图
摘要: 依赖 carousel_slider: ^5.0.0 #创建轮播图 例子 Widget _gamesCard() { CarouselSliderController? carouselController = CarouselSliderController(); return LayoutBui
阅读全文
posted @ 2024-08-28 18:43 鲤斌
阅读(84)
评论(0)
推荐(0)
编辑
2024年8月27日
auto_size_text 自动调整文本大小以适应其容器的 Flutter 插件
摘要: 依赖 auto_size_text: ^3.0.0 //自动调整文本大小 例子 class AutoSizeRichTextExample extends StatelessWidget { @override Widget build(BuildContext context) { return
阅读全文
posted @ 2024-08-27 09:49 鲤斌
阅读(53)
评论(0)
推荐(0)
编辑
2024年8月11日
flutter中文字长度计算
摘要: 计算每个列表文字的长度 List<double> itemWidths = []; // 计算每个列表项的宽度 void calculateItemWidths() { // 清空之前计算的宽度 itemWidths.clear(); update(); // 创建一个 TextPainter 实例
阅读全文
posted @ 2024-08-11 22:25 鲤斌
阅读(82)
评论(0)
推荐(0)
编辑
2024年8月10日
flutter滑动分析
摘要: ListView.builder 优点: 内存管理: ListView.builder 使用了懒加载机制,只渲染当前视口内的列表项,这样可以有效节省内存和性能。适用于长列表。 简单易用: 作为 Flutter 内置的组件,易于使用和配置,不需要额外依赖。 性能优化: 内置的高效滚动性能,不需要手动管
阅读全文
posted @ 2024-08-10 18:37 鲤斌
阅读(22)
评论(0)
推荐(0)
编辑
flutter 中scrollable_positioned_list 控制列表滚动
摘要: scrollable_positioned_list 是 Flutter 中一个强大的列表控件,它允许通过位置来控制列表滚动。它常用于需要精确控制列表滚动位置的应用场景 依赖 scrollable_positioned_list: ^0.3.8 #精确控制列表滚动位置 代码 提前知道每个模块高度 c
阅读全文
posted @ 2024-08-10 18:30 鲤斌
阅读(178)
评论(0)
推荐(0)
编辑
Flutter中scroll_to_index 实现列表滚动到指定索引的库
摘要: scroll_to_index 是一个用于在 Flutter 中实现列表滚动到指定索引的库 依赖 scroll_to_index: ^3.0.1 #滑动位置 使用 class ScrollToIndexExample extends StatefulWidget { @override _Scrol
阅读全文
posted @ 2024-08-10 17:26 鲤斌
阅读(159)
评论(0)
推荐(0)
编辑
2024年7月27日
flutter中使用rabbitmq
摘要: 依赖 dart_amqp: ^0.3.1 #rabbitMq接收发送消息 工具封装 import 'package:dart_amqp/dart_amqp.dart'; /// 封装 RabbitMQ 的服务类 class RabbitMQService { late ConnectionSetti
阅读全文
posted @ 2024-07-27 20:34 鲤斌
阅读(28)
评论(0)
推荐(0)
编辑
2024年7月26日
flutter 根据网址生成二维码
摘要: 依赖 qr_flutter: ^4.1.0 #二维码 代码 Center( child: Column( children: [ Center( child: QrImageView( data: 'https://www.baidu.com/', version: QrVersions.auto,
阅读全文
posted @ 2024-07-26 16:04 鲤斌
阅读(54)
评论(0)
推荐(0)
编辑
2024年7月24日
flutter在监听设备
摘要: 依赖 universal_platform: ^1.1.0 #判断设备 用于检测平台类型(如 Android、iOS、Web) flutter_device_type: ^0.4.0 #设备是否为平板(苹果与安卓) 代码 class MyApp1 extends StatelessWidget {
阅读全文
posted @ 2024-07-24 13:40 鲤斌
阅读(43)
评论(0)
推荐(0)
编辑
下一页