DevsOnFlutter / draggable_home

A draggable Flutter widget that makes implementing a sliding up and fully-stretchable much easier.
https://pub.dev/packages/draggable_home
BSD 3-Clause "New" or "Revised" License
163 stars 39 forks source link

Appbar header Color #13

Closed HeliosPR closed 2 years ago

HeliosPR commented 2 years ago

It there's a way to change the color for the app bar title from the default blue.

4-alok commented 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(...)
  );