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?

内容

この記事は3回目の挫折をして,udemyで改めてFlutterの勉強をしている著者の完全備忘録です.
今週はいろいろあって時間がないので,普段obsidianにメモしている内容のコピペです.

学んだこと

私はdartの言語を学んでいなかったために初歩的な事で躓いていた. 今までは躓いていたことにすら気づくことが出来なかった.
特定のif条件をつかる時(sscafold()にbakcoler)

  }
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      backgroundColor: _counter % 4 == 0 ? Colors.blue : Colors.yellow,

上記のようにまずifの条件が前に着てそのあと「?」でifの替わりを行い,「:」の後にelse条件を持ってくる.

宣言したstlessWidgetはそのまま上位のクラスに呼び出せば,特にtextなどで宣言する必要なく,使用することが出来る.

return 文の前に関数記述することで変数処理を行える.

Align

paddigは存在するWidgetの周囲をpaddingする
AlignはWidgetの配置を決める

aligment : Aligment.[y,x]

使えそうなこと

~~ : ~~~ ? ifの真結果 : ifの偽結果

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?