clipped_shapes 2.0.0 copy "clipped_shapes: ^2.0.0" to clipboard
clipped_shapes: ^2.0.0 copied to clipboard

Container widgets with a shaped border that crops the content and keeps the touch feedback on the foreground.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'demo_screen.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) => MaterialApp(
        title: 'Clipped Shapes Demo',
        theme: ThemeData(
          primarySwatch: Colors.teal,
        ),
        home: const DemoScreen(),
      );
}
2
likes
0
pub points
42%
popularity

Publisher

unverified uploader

Container widgets with a shaped border that crops the content and keeps the touch feedback on the foreground.

Repository (GitHub)
View/report issues

Topics

#button #border #shape #clip #box

License

unknown (license)

Dependencies

flutter

More

Packages that depend on clipped_shapes