0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

flutter 初心者

Last updated at Posted at 2020-03-27

そもそも
https://flutter.dev/docs/development/

ディレクトリ構成

lib
└ mai.dat はじめに表示させる画面

pubspec.yaml パッケージ管理システム バージョン記載


Dart

変数定義

static/final/const

接頭語   説明   使用例
final プログラム開始後のある時点で一回だけ初期化され、初期化以降は、代入などを通じて変更されない  int i = 0;
const コンパイル時に確定している値であることを示すための指定  const int i = 0;
static モジュールローカル は無い! [int _num][class _SomeClass]  のように 先頭にアンダースコアをつけて見れなくすることができる  final int _Pv = 0;

https://qiita.com/uehaj/items/7c07f019e05a743d1022

画像

https://qiita.com/yu124choco/items/a2710ec004d3425a2a0b

body
https://qiita.com/coka__01/items/dedb569f6357f1b503fd

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?