LoginSignup
1
0

More than 5 years have passed since last update.

flutter webを試してみる

Last updated at Posted at 2019-05-09

Flutter完全初心者

Install Flutter

Run flutter doctor までできればOK

PATHの設定がちゃんとできれば詰まるところはなさそう

Flutter webの準備

エディタ

Visual Studio Code を使うのが楽そう

image.png

プロジェクト作成

VSCodeの Flutter: New Web Project で作ってやるのが一番楽。

ちょっといじってみる

MaterialButtonにはFlat, Raise, Outlineがあるっぽい。

lib/main.dart
<中略>

          children: <Widget>[
            Text(
              'Hello, World!',
            ),
            Text(
              'たむらまゆ'
            ),
            FlatButton(child: Text('flat button'), onPressed: () {},),
            RaisedButton(child: Text('raised button'), onPressed: () {},),
            OutlineButton(child: Text('outline button'), onPressed: () {},),
          ],
        ),
      ), // This trailing comma makes auto-formatting nicer for build methods.
    );
  }
}

こんな感じになる

image.png

1
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
1
0