fix: divider theme in material 3
This commit is contained in:
parent
549e1a2753
commit
893421de6e
1 changed files with 6 additions and 0 deletions
|
@ -5,6 +5,9 @@ import 'package:flutter/material.dart';
|
|||
final lightThemeData = ThemeData(
|
||||
fontFamily: 'Inter',
|
||||
brightness: Brightness.light,
|
||||
dividerTheme: const DividerThemeData(
|
||||
color: Colors.black12,
|
||||
),
|
||||
hintColor: const Color.fromRGBO(158, 158, 158, 1),
|
||||
primaryColor: const Color.fromRGBO(255, 110, 64, 1),
|
||||
primaryColorLight: const Color.fromRGBO(0, 0, 0, 0.541),
|
||||
|
@ -117,6 +120,9 @@ final lightThemeData = ThemeData(
|
|||
final darkThemeData = ThemeData(
|
||||
fontFamily: 'Inter',
|
||||
brightness: Brightness.dark,
|
||||
dividerTheme: const DividerThemeData(
|
||||
color: Colors.white12,
|
||||
),
|
||||
primaryColorLight: const Color.fromRGBO(255, 255, 255, 0.702),
|
||||
iconTheme: const IconThemeData(color: Colors.white),
|
||||
primaryIconTheme:
|
||||
|
|
Loading…
Reference in a new issue