👩‍🎨

FlutterのAppBarの色をオリジナルにしたい!

2022/05/03に公開

自分の好みの色を使うにはどうすればいいのか?

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を変換してくれるサイトがあったのでリンク貼っておきます。
https://tech-unlimited.com/color.html

今回使ったのは、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(),
    );
  }
}

おお!、変換した色を使ったが、一緒の色だ!
ご興味のある方は、いろいろ試してみてください。

Discussion