claymorphism 0.1.2 copy "claymorphism: ^0.1.2" to clipboard
claymorphism: ^0.1.2 copied to clipboard

A Flutter package that provides claymorphic UI containers for a modern and aesthetic design. With Claymorphism, you can easily create visually appealing and tactile user interfaces by leveraging the p [...]

Claymorphism Package #

Pub License

A Flutter package that provides claymorphic UI containers for a modern and aesthetic design.

Features #

  • Easy-to-use claymorphic containers for UI design.
  • Customizable properties to adjust the appearance of the containers.
  • Provides various container shapes and styles.
  • Compatible with Flutter web and mobile applications.

Installation #

Add the following line to your pubspec.yaml file:

dependencies:
  claymorphism: ^0.1.2

Example #

Clay Card #

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

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      backgroundColor: Colors.grey.shade300,
      body: Center(
        child: ClayCard(
          height: MediaQuery.of(context).size.height * 0.35,
          width: MediaQuery.of(context).size.height * 0.35,
        ),
      ),
    );
  }
}

Clay Card with Shadow #

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

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      backgroundColor: Colors.grey.shade300,
      body: Center(
        child: CardWithShadow(
          height: MediaQuery.of(context).size.height * 0.35,
          width: MediaQuery.of(context).size.height * 0.35,
        ),
      ),
    );
  }
}

1
likes
120
pub points
54%
popularity

Publisher

verified publisherbauhausresearch.com

A Flutter package that provides claymorphic UI containers for a modern and aesthetic design. With Claymorphism, you can easily create visually appealing and tactile user interfaces by leveraging the popular claymorphism design trend. This package offers a collection of claymorphic containers, that can be customized to suit your application's style and branding.

Homepage

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on claymorphism