flutter_cupertino_bottom_sheet 1.1.0 copy "flutter_cupertino_bottom_sheet: ^1.1.0" to clipboard
flutter_cupertino_bottom_sheet: ^1.1.0 copied to clipboard

A package that mimics a Cupertino Style bottom sheet.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_cupertino_bottom_sheet/flutter_cupertino_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
0
points
57
downloads

Publisher

verified publishersoftmaestri.com

Weekly Downloads

A package that mimics a Cupertino Style bottom sheet.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on flutter_cupertino_bottom_sheet