|
@@ -22,14 +22,14 @@ class TitleBar {
|
|
|
return AppBar(
|
|
return AppBar(
|
|
|
title: Text(
|
|
title: Text(
|
|
|
title,
|
|
title,
|
|
|
- style: TextStyle(color: GSYColors.primaryDarkValue, fontSize: 16),
|
|
|
|
|
|
|
+ style: TextStyle(color: Colors.white, fontSize: 16),
|
|
|
),
|
|
),
|
|
|
centerTitle: true,
|
|
centerTitle: true,
|
|
|
leading: BackButton(),
|
|
leading: BackButton(),
|
|
|
brightness: Brightness.light,
|
|
brightness: Brightness.light,
|
|
|
backgroundColor: Color(0xFF4875EC),
|
|
backgroundColor: Color(0xFF4875EC),
|
|
|
elevation: 0,
|
|
elevation: 0,
|
|
|
- iconTheme: IconThemeData(color: GSYColors.primaryDarkValue),
|
|
|
|
|
|
|
+ iconTheme: IconThemeData(color: Colors.white),
|
|
|
);
|
|
);
|
|
|
}
|
|
}
|
|
|
|
|
|