flutter_custom_shaper 0.1.1 copy "flutter_custom_shaper: ^0.1.1" to clipboard
flutter_custom_shaper: ^0.1.1 copied to clipboard

Flutter package for custom shapes with flexible clipping options.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_custom_shape_example/ui/basic_shapes.dart';
import 'package:flutter_custom_shape_example/ui/bubble_shape.dart';
import 'package:flutter_custom_shape_example/ui/unique_shapes.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: Text('Flutter Custom Shapers'),
        ),
        body: SingleChildScrollView(
          child: Column(
            crossAxisAlignment: CrossAxisAlignment.start,
            mainAxisAlignment: MainAxisAlignment.start,
            spacing: 20,
            children: [
              BubbleShapeScreen(),
              UniqueShapesScreen(),
              BasicShapesScreen(),
            ],
          ),
        ),
      ),
    );
  }
}
8
likes
160
points
14
downloads

Publisher

unverified uploader

Weekly Downloads

Flutter package for custom shapes with flexible clipping options.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on flutter_custom_shaper