Flutter资源配置

一、Android资源配置

1.应用名称和启动Icon修改

image
image

2.启动图修改

image

3.Android页面导航title设置居中

centerTitle: true

class _ChatPageState extends State {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        centerTitle: true,
        title: Text("微信"),
      ),
      body: Center(
        child: Text("微信页面"),
      ),
    );
  }
}

二、iOS资源配置

App名称修改

image

App图标和启动图配置

image

三、公共资源配置

pubspec.yaml 文件

image

  • 使用Asset资源(不区分2x、3x)
  • AssetImage('images/tabbar_chat.png')
  • 资源路径写错时后面的资源会失效
BottomNavigationBarItem(
  icon:Image(height: 20,width: 20,image: AssetImage('images/tabbar_chat.png')),
  activeIcon: Image(height: 20,width: 20,image: AssetImage('images/tabbar_chat_hl.png')),
  title: Text('微信'),
),

效果图

Flutter资源配置

你可能感兴趣的:(Flutter资源配置)