Flutter开发中一些问题的总结

参考:Flutter实战进阶 container width、height 100% 1 2 3 4 5 FractionallySizedBox( widthFactor: 1, heightFactor: 1, child: , ) 1 2 double width = MediaQuery.of(context).size.width double height = MediaQuery.of(context).size.height 沉浸式背景图片 背景图片铺满AppBar

Flutter路由管理

路由(Route)在移动开发中通常指页面(Page),这跟web开发中单页应用的Route概念意义是相同的,Route在Android中通常

FutureBuilder

FutureBuilder使用,以及防止FutureBuilder进行不必要的重绘。