FlutterのAppBarの色をオリジナルにしたい!
10920 ワード
自分の好みの色を使うにはどうすればいいのか?
16進数を使う場合
main.dart
import 'package:flutter/material.dart';
import 'package:your_project_name/homepage.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Flutter Demo',
theme: ThemeData(
appBarTheme: const AppBarTheme(color: Color(0xff191b60)),
),
home: const HomePage(),
);
}
}
homepage.dart
import 'package:flutter/material.dart';
class HomePage extends StatelessWidget {
const HomePage({ Key? key }) : super(key: key);
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('HomePage'),
),
);
}
}
RGBを使いたいとき
16進数やRGBを変換してくれるサイトがあったのでリンク貼っておきます。
今回使ったのは、RGBA値ですが😅
main.dart
import 'package:flutter/material.dart';
import 'package:your_project_name/homepage.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Flutter Demo',
theme: ThemeData(
appBarTheme: const AppBarTheme(color: Color.fromRGBO(25, 27, 96, 1)),
),
home: const HomePage(),
);
}
}
おお!、変換した色を使ったが、一緒の色だ!
ご興味のある方は、いろいろ試してみてください。
Author And Source
この問題について(FlutterのAppBarの色をオリジナルにしたい!), 我々は、より多くの情報をここで見つけました https://zenn.dev/joo_hashi/articles/a0344fb300c1f6著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Collection and Share based on the CC protocol