feat: make page title black
parent
6ebdb39760
commit
af5a4384c6
|
@ -38,7 +38,12 @@ class MainPageState extends State<MainPage> {
|
|||
return Scaffold(
|
||||
extendBodyBehindAppBar: false,
|
||||
appBar: AppBar(
|
||||
title: Text(pages[currentIndex].title),
|
||||
title: Text(
|
||||
pages[currentIndex].title,
|
||||
style: const TextStyle(
|
||||
color: Colors.black
|
||||
),
|
||||
),
|
||||
backgroundColor: Colors.transparent,
|
||||
foregroundColor: Colors.grey.shade400,
|
||||
elevation: 0,
|
||||
|
|
Loading…
Reference in New Issue