ComingSoonCard

A Flutter widget that displays a "Coming Soon" card with a customizable gradient background and an image.

Features

  • A card with a gradient background.
  • An image displayed in the card, which can be customized.
  • Simple and easy to use.

Installation

Add the following to your pubspec.yaml:

dependencies:
  coming_soon_card: latest_version

Then run:

flutter pub get

Usage

import 'package:flutter/material.dart';
import 'package:coming_soon_card/coming_soon_card.dart';

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: Text('Coming Soon Card Example'),
        ),
        body: Center(
          child: ComingSoonCard(),
        ),
      ),
    );
  }
}

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

Example

Here's how the ComingSoonCard will look in your app:

Coming Soon Card

Contributing

Contributions are welcome! If you find a bug or have a feature request, please create an issue or submit a pull request.

License

This project is licensed under the MIT License.


Make sure to replace `latest_version` with the actual version of your package, and update the example image path if necessary.