摘要: 用Flutter打乱对象数组的函数如下: int getRandomInt(var min,var max){ final _random = new Random(); return _random.nextInt((max - min).floor()) + min; } //打乱数组 shuf 阅读全文
posted @ 2021-04-29 21:40 罗毅豪 阅读(765) 评论(0) 推荐(0) 编辑
摘要: 用Flutter写页面时,有时页面内容太多,底部会出现黄色条纹。 解决方法:在组件外增加一层ListView即可。 如将代码: body: Center( child: Column( mainAxisAlignment: MainAxisAlignment.center, children: <W 阅读全文
posted @ 2021-04-29 16:52 罗毅豪 阅读(546) 评论(0) 推荐(0) 编辑