flutter_3d_choice_chip 0.1.4 copy "flutter_3d_choice_chip: ^0.1.4" to clipboard
flutter_3d_choice_chip: ^0.1.4 copied to clipboard

Simple 3D choice chip for Flutter with customizable color themes and sizing.

flutter_3d_choice_chip #

This package provides a simple 3D choice chip.

Getting Started #

Import the file.

import 'package:flutter_3d_choice_chip/flutter_3d_choice_chip.dart';
copied to clipboard

Use with default style: #

ChoiceChip3D(
  style: ChoiceChip3DStyle.blue, // ChoiceChip3DStyle.red, ChoiceChip3DStyle.white
  selected: true,
  onSelected: () {},
  onUnSelected: () {},
  child: Text("My Choice"),
);
copied to clipboard

Use with custom style: #

ChoiceChip3D(
  style: ChoiceChip3dStyle(
      topColor: Colors.lightGreen,
      backColor: Colors.deepOrange,
      borderRadius: BorderRadius.zero
  ),
  onSelected: () {},
  onUnSelected: () {},
  child: Text("My Choice"),
);
copied to clipboard

Credit #

Flutter 3D Choice Chip was inspired by button3d

23
likes
160
points
118
downloads

Publisher

verified publishermatwright.dev

Weekly Downloads

2024.07.09 - 2025.01.21

Simple 3D choice chip for Flutter with customizable color themes and sizing.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on flutter_3d_choice_chip