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