Closed mliitfall closed 5 years ago
Hi, thanks for the widget! I'm trying to change the height of body. But it looks like i can't change it.
bottomSheet: SolidBottomSheet( // showOnAppear: true, headerBar: Container( color: Theme.of(context).primaryColor, height: 50, child: Center( child: Text("Swipe me!"), ), ), body: Container( color: Colors.white, height: 20, child: Center( child: Text( "Hello! I'm a bottom sheet :D", style: Theme.of(context).textTheme.display1, ), ), ), ),
Ah sorry i found it. its maxheight.
Hi, thanks for the widget! I'm trying to change the height of body. But it looks like i can't change it.