美文网首页
2.9.flutter-名字和Icon和启动图和资源文件

2.9.flutter-名字和Icon和启动图和资源文件

作者: ChaosHeart | 来源:发表于2020-10-08 09:39 被阅读0次

    1.iOS设置

    //1.名字


    截屏2020-10-08 09.26.09.png

    //2.icon


    截屏2020-10-08 09.20.36.png
    //3.启动图
    截屏2020-10-08 09.20.55.png

    2.android设置

    //1.名字


    截屏2020-10-08 09.28.04.png
    截屏2020-10-08 09.28.28.png

    //2.icon


    截屏2020-10-08 09.29.04.png
    drawable:          启动图的设置 
    mipmap-hdpi :  @1.5x图片
    mipmap-mdpi : @1x图片
    mipmap-xhdpi: @2x图片
    mipmap-xxhdpi: @3x图片
    mipmap-xxxhdpi: @4x图片
    values:                
    
    截屏2020-10-08 09.36.22.png

    //3.启动图


    截屏2020-11-03 08.39.04.png
    <?xml version="1.0" encoding="utf-8"?>
    <!-- Modify this file to customize your launch splash screen -->
    <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
        <item android:drawable="@android:color/white" />
    
        <!-- You can insert your own image assets here -->
        <item>
            <bitmap
                android:dither="true"
                android:filter="true"
                android:gravity="fill"
                android:tileMode="disabled"
                android:src="@mipmap/launch_background" />
        </item>
    </layer-list>
    

    启动图尺寸:

    drawable:          启动图的设置 
    mipmap-hdpi :  @1.5x图片      480*800
    mipmap-mdpi : @1x图片         320*480
    mipmap-xhdpi: @2x图片         640*960
    mipmap-xxhdpi: @3x图片        1236*2197
    mipmap-xxxhdpi: @4x图片       1644*2922
    values:                
    

    3.flutter资源文件 - images


    截屏2020-10-08 09.47.53.png

    相关文章

      网友评论

          本文标题:2.9.flutter-名字和Icon和启动图和资源文件

          本文链接:https://www.haomeiwen.com/subject/kzucpktx.html