2020
09-25
09-25
Flutter 实现整个App变为灰色的方法示例
在Flutter中实现整个App变为灰色是非常简单的,只需要在最外层的控件上包裹ColorFiltered,用法如下:@overrideWidgetbuild(BuildContextcontext){returnColorFiltered(colorFilter:ColorFilter.mode(Colors.grey,BlendMode.color),child:Scaffold(appBar:_appBar,body:IndexedStack(index:_currIndex,children:<Widget>[HomeItemPage(),WidgetPage(),MyPage()],),backgroundColor:Theme.of(cont...
继续阅读 >