flutter_cupernino_bottom_sheet 1.0.8 copy "flutter_cupernino_bottom_sheet: ^1.0.8" to clipboard
flutter_cupernino_bottom_sheet: ^1.0.8 copied to clipboard

A package that mimics a Cupertino Style bottom sheet.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_cupernino_bottom_sheet/flutter_cupernino_bottom_sheet.dart';

import 'test_page.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return CupertinoBottomSheetRepaintBoundary(
      child: MaterialApp(
        navigatorKey: cupertinoBottomSheetNavigatorKey,
        title: 'Flutter Cupertino Bottom Sheet',
        theme: ThemeData(
          primarySwatch: Colors.red,
        ),
        home: const TestPage(),
      ),
    );
  }
}
9
likes
150
pub points
81%
popularity

Publisher

verified publishersoftmaestri.com

A package that mimics a Cupertino Style bottom sheet.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on flutter_cupernino_bottom_sheet