awebox_flutter 0.1.0 copy "awebox_flutter: ^0.1.0" to clipboard
awebox_flutter: ^0.1.0 copied to clipboard

A beautiful Flutter container widget with a customizable gradient background and modern UI defaults.

example/lib/main.dart

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

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        backgroundColor: Colors.grey[200],
        appBar: AppBar(title: const Text('Awesome Container')),
        body: Center(
          child: AwesomeContainer(
            width: 250,
            height: 150,
            child: const Center(
              child: Text(
                "Awesome Container",
                style: TextStyle(color: Colors.white, fontSize: 20),
              ),
            ),
          ),
        ),
      ),
    );
  }
}
2
likes
130
points
139
downloads

Publisher

unverified uploader

Weekly Downloads

A beautiful Flutter container widget with a customizable gradient background and modern UI defaults.

Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (license)

Dependencies

flutter

More

Packages that depend on awebox_flutter