Open smakarov opened 3 years ago
Hi there! Default Scaffold bottomNavigationBar: Column( mainAxisSize: MainAxisSize.min, children: [ SlidingUpPanel( backdropEnabled: true, panel: Center( child: Text("This is the sliding Widget"), ), ), BottomNavigationBar( items: <BottomNavigationBarItem>[ BottomNavigationBarItem( icon: Icon(SleepAppUIIcons.mixes), label: 'Mixes', ), BottomNavigationBarItem( icon: Icon(SleepAppUIIcons.sound_wave), label: 'Sounds', ), BottomNavigationBarItem( icon: Icon(SleepAppUIIcons.settings), label: 'Settings', ), ], ), ], ),
bottomNavigationBar: Column( mainAxisSize: MainAxisSize.min, children: [ SlidingUpPanel( backdropEnabled: true, panel: Center( child: Text("This is the sliding Widget"), ), ), BottomNavigationBar( items: <BottomNavigationBarItem>[ BottomNavigationBarItem( icon: Icon(SleepAppUIIcons.mixes), label: 'Mixes', ), BottomNavigationBarItem( icon: Icon(SleepAppUIIcons.sound_wave), label: 'Sounds', ), BottomNavigationBarItem( icon: Icon(SleepAppUIIcons.settings), label: 'Settings', ), ], ), ], ),
And i got this
Hey! wrap the column in SingleChildScrollView(). I think that'll work.
SingleChildScrollView()
Hi there! Default Scaffold
bottomNavigationBar: Column( mainAxisSize: MainAxisSize.min, children: [ SlidingUpPanel( backdropEnabled: true, panel: Center( child: Text("This is the sliding Widget"), ), ), BottomNavigationBar( items: <BottomNavigationBarItem>[ BottomNavigationBarItem( icon: Icon(SleepAppUIIcons.mixes), label: 'Mixes', ), BottomNavigationBarItem( icon: Icon(SleepAppUIIcons.sound_wave), label: 'Sounds', ), BottomNavigationBarItem( icon: Icon(SleepAppUIIcons.settings), label: 'Settings', ), ], ), ], ),
And i got this