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

outdated

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

example/lib/main.dart

import 'package:example/placeholder_example.dart';
import 'package:example/listview_example.dart';
import 'package:example/topsheet_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: {
        '/ListViewExample': (context) => ListViewSnapSheetExample(),
        '/PlaceholderExample': (context) => PlaceholderSnapSheetExample(),
        '/TopSnapSheetExample': (context) => TopSnapSheetExample(),
      },
      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('Listview example'),
                    onPressed: () {
                      Navigator.of(context).pushNamed('/ListViewExample');
                    },
                  ),
                  RaisedButton(
                    child: Text('Placeholder example'),
                    onPressed: () {
                      Navigator.of(context).pushNamed('/PlaceholderExample');
                    },
                  ),
                  RaisedButton(
                    child: Text('Top sheet example'),
                    onPressed: () {
                      Navigator.of(context).pushNamed('/TopSnapSheetExample');
                    },
                  ),
                ],
              ),
            );
          },
        ),
      )
    );
  }
}
731
likes
0
pub points
95%
popularity

Publisher

verified publisheradamjonsson.dev

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

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on snapping_sheet