##AppBarの背景色と文字の色を変更する
画像のように背景色と文字の色をそれぞれ指定する方法を紹介します。他にやり方やアドバイス等あれば教えて欲しいです。
##背景色の設定
appBarのパラメータにはtitle
の他,backgroundColor
というものがあるので,Colorクラスから色を選択します。
##文字の色の指定
title
に指定したTextの文字の色をstyle
から変更します。
Text("テスト",
style: TextStyle(color: Colors.black),
##ソースコード
コピペしてそのまま使えます。
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(title: Text("テスト",
style: TextStyle(color: Colors.black),
),
backgroundColor: Colors.red),
body: Center(
),
),
);
}
}