| 12345678910111213141516171819202122232425262728293031323334353637 |
- import 'package:flutter/material.dart';
- const COLOR_PAGE_BG = Color(0xFFFFFFFF);
- const COLOR_PRIMARY = Color(0xFFEA2D2D);
- const COLOR_TEXT_2 = Color(0xFFA3A6AD);
- const COLOR_BORDER = Color(0xFFF2F3F5);
- const COLOR_TEXT_3 = Color(0xFFCACBCC);
- const COLOR_TEXT_1 = Color(0xFF000000);
- const COLOR_INPUT_BG = Color(0x1A8E8E93);
- const COLOR_USERNAME = Color(0xFF7D2424);
- const COLOR_TEXT_HINT = Color(0xFFB3B3B3);
- Widget appbarTitle(String title, {Color color = COLOR_TEXT_1}) {
- return Text(
- title,
- style: TextStyle(color: color, fontWeight: FontWeight.bold, fontSize: 18),
- );
- }
- AppBar appBarLight(String title, {List<Widget> actions}) {
- return AppBar(
- brightness: Brightness.light,
- backgroundColor: Colors.white,
- iconTheme: IconThemeData(color: Colors.black),
- title: appbarTitle(title),
- elevation: 0,
- actions: actions,
- );
- }
|