dbenitez-bcn / solid_bottom_sheet

Apache License 2.0
58 stars 19 forks source link

How I can Set body || headerBar Background color to Transparent ? 😟 #34

Closed kawan2019 closed 1 year ago

kawan2019 commented 2 years ago

How I can Set body || headerBar Background color to Transparent ? 😟

dbenitez-bcn commented 2 years ago

It should be transparent already. Specify your widget background to transparent

fch21 commented 2 years ago

Solved in this other issue #29

luscas commented 2 years ago
SolidBottomSheet(
  headerBar: const SizedBox(), // Without headerBar
  body: Container(
    child: Center(
      child: Text('Hello World')
    )
  ),
)