feat: make page title black

pull/5/head
2211260 2023-06-02 18:38:19 +02:00
parent 6ebdb39760
commit af5a4384c6
1 changed files with 6 additions and 1 deletions

View File

@ -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,