uniccards 1.0.0

SDKflutter
Platformandroidioswindowslinuxmacosweb

Flutter 3D cards.

StartCard Flutter Package

Pub Package License: MIT© Nirnay Sawant

Overview

The StartCard widget is a customizable card for Flutter apps with images, icons, and text.

Features

  • Display images (network or asset).
  • Include optional icons.
  • Customize text color, background color, font size, weight, rotation, and spacing.
  • Adjust card dimensions based on screen width.

Installation

Add to pubspec.yaml:

yaml dependencies: start_card: ^1.0.0

Run flutter pub get to install.

dart import 'package:start_card/start_card.dart'; dart

Example

Check the example folder in this repository.

Configuration Properties:

image: Image source (network URL or asset path). icon: Optional icon. fontColor: Text color. cardColor: Background color. fontSizes: Font size. titleText: Text content. fontBold: Font weight. rotactText: Rotation angle. space: Spacing. Contribution Contributions are welcome! Open issues or submit pull requests.

License Nirnay SAwant - LICENSE.

Acknowledgments Inspired by the need for a flexible card component in Flutter.

Note: Include screenshots or GIFs showcasing the package in action if possible.

Images Example Image -

Screenshot 2023-11-27 021127

// Use the StartCard widget:
StartCard(
  image: 'assets/card_image.jpg',
  titleText: 'Sample Title',
  icon: Icon(Icons.star),
  fontColor: Colors.white,
  cardColor: Colors.blue,
  fontSizes: 18.0,
  fontBold: FontWeight.bold,
  rotactText: 45.0,
  space: 10.0,
)