bottom_sheet_x 1.0.0 copy "bottom_sheet_x: ^1.0.0" to clipboard
bottom_sheet_x: ^1.0.0 copied to clipboard

elastic bottom sheet widget with the customizable material spring animation.

example/lib/main.dart

import 'package:flutter/material.dart';
import './stack_bottom_sheet_test.dart';
import './nav_bottom_sheet_test.dart';

void main() => runApp(MaterialApp(
      home: MyApp(),
    ));

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('Demo'),
      ),
      body: ListView(
        children: <Widget>[
          RaisedButton(
            onPressed: () {
              Navigator.push(context, MaterialPageRoute(builder: (context) {
                return StackBottomSheetTest();
              }));
            },
            child: Text('StackBottomSheet'),
          ),
          RaisedButton(
            onPressed: () {
              Navigator.push(context, MaterialPageRoute(builder: (context) {
                return NavBottomSheetTest();
              }));
            },
            child: Text('NavBottomSheet'),
          )
        ],
      ),
    );
  }
}
10
likes
30
pub points
3%
popularity

Publisher

unverified uploader

elastic bottom sheet widget with the customizable material spring animation.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on bottom_sheet_x