flutter_hidden_drawer 0.1.0 copy "flutter_hidden_drawer: ^0.1.0" to clipboard
flutter_hidden_drawer: ^0.1.0 copied to clipboard

outdated

Beautiful custom hidden drawer. Please press star in my repo if you like it. Thank you.

flutter_hidden_drawer #

Tooltip function built in for flutter. Please press star in my repo if you like it. Thank you.

Usage #

  @override
  Widget build(BuildContext context) {
    return HiddenDrawer(
      child: Scaffold(
        appBar: AppBar(
          leading: HiddenDrawerIcon(),
          title: Text(widget.title),
        ),
        body: Center(
          child: Column(
            mainAxisAlignment: MainAxisAlignment.center,
            children: <Widget>[
              Text(
                'You have pushed the button this many times:',
              ),
              Text(
                '$_counter',
                style: Theme.of(context).textTheme.display1,
              ),
            ],
          ),
        ),
        floatingActionButton: FloatingActionButton(
          onPressed: _incrementCounter,
          tooltip: 'Increment',
          child: Icon(Icons.add),
        ),
        drawer: Container(),
      ),
      drawer: HiddenDrawerMenu(),
    );
  }

Example #

Please find example in here: Example

10
likes
0
pub points
67%
popularity

Publisher

unverified uploader

Beautiful custom hidden drawer. Please press star in my repo if you like it. Thank you.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, provider

More

Packages that depend on flutter_hidden_drawer