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

outdated

A package that provides a bottom sheet widget that snaps to different vertical positions

example/lib/main.dart

import 'package:example/layout_example.dart';
import 'package:example/use_example.dart';
import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      routes: {
        '/UseExample': (context) => UseSnapSheetExample(),
        '/LayoutExample': (context) => LayoutSnapSheetExample(),
      },
      home: Scaffold(
        body: Builder(
          builder: (context) {
            return Padding(
              padding: EdgeInsets.all(25.0),
              child: Column(
                crossAxisAlignment: CrossAxisAlignment.stretch,
                mainAxisAlignment: MainAxisAlignment.center,
                children: <Widget>[
                  RaisedButton(
                    child: Text('Use example'),
                    onPressed: () {
                      Navigator.of(context).pushNamed('/UseExample');
                    },
                  ),
                  RaisedButton(
                    child: Text('Layout example'),
                    onPressed: () {
                      Navigator.of(context).pushNamed('/LayoutExample');
                    },
                  ),
                ],
              ),
            );
          },
        ),
      )
    );
  }
}
731
likes
40
pub points
95%
popularity

Publisher

verified publisheradamjonsson.dev

A package that provides a bottom sheet widget that snaps to different vertical positions

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on snapping_sheet