/// 全体的にコメントも省略 // 省略 body: Center( child: Column( mainAxisAlignment: MainAxisAlignment.center, children: <Widget>[ Text( 'You have pushed the button this many times:', ), Text( '$_counter', style: Theme.of(context).textTheme.display1, ), ], ), ), // 省略 こんな感じに実装されていて、 Text ウィジェットは二箇所で利用されています。 サンプルアプリを起動したときの表示はこうです。 Text に手を加えてみる いざアプリ開発に取り掛かると、サンプルアプリのようにシンプルではなく様々な装飾を行います。 今回は二箇所の Text をドラッグできる