Closed HeliosPR closed 2 years ago
try to change color from ThemeData,
or wrap with Theme ie:
Theme(
data: Theme.of(context).copyWith(
appBarTheme: const AppBarTheme(
backgroundColor: Colors.green,
)
),
child: DraggableHome(...)
);
It there's a way to change the color for the app bar title from the default blue.