/flutter_starter

Flutterのスタータープロジェクト

Primary LanguageDart

cognitive_shuffle

Flutter Starter Project

Getting Started

This project is a starting point for a Flutter application.

A few resources to get you started if this is your first Flutter project:

For help getting started with Flutter development, view the online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

スプラッシュスクリーン作成

https://zenn.dev/susatthi/articles/20220406-061305-flutter-native-splash

  1. 768 x 768のアイコンを用意する。
    1. macbookの画像加工でサイズの変更は可能
  2. 「Kakumaru Punch」を使用して、角丸に加工する
    1. https://wayohoo.com/article/4368
    2. rouded 30 ぐらい
  3. assets/icon/splash.png に配置
  4. dart pub run flutter_native_splash:create 実行

リリース手順

スクリーンショット作成

  1. フレーム付き影なしスクリーンショットを作成
  2. Canvaで画像を作成

iOS

iOS

ADB

Android StudioのSDKを使用する。 Android SDK Platform-Toolsのパスを通す方法

export ANDROID_HOME=${HOME}/Library/Android/sdk
if [ -d "${ANDROID_HOME}" ]; then
  export PATH="${ANDROID_HOME}/bin:$PATH"
fi

# Platform-Toolsのパスを通す
export ANDROID_TOOL_PATH=${ANDROID_HOME}/platform-tools
if [ -d "${ANDROID_TOOL_PATH}" ]; then
  export PATH="${ANDROID_TOOL_PATH}:$PATH"
fi