flutter_common_components 0.0.1 copy "flutter_common_components: ^0.0.1" to clipboard
flutter_common_components: ^0.0.1 copied to clipboard

A Flutter package that provides customizable widgets for creating beautiful user interfaces. It includes responsive layouts, animated components, and theme-aware designs.

example/lib/main.dart

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

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

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

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  String _platformVersion = 'Unknown';

  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Column(
          children: [
            Center(
              child: Text('Running on: $_platformVersion\n'),
            ),
            CommonInputChip()
          ],
        ),
      ),
    );
  }
}
1
likes
110
points
53
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package that provides customizable widgets for creating beautiful user interfaces. It includes responsive layouts, animated components, and theme-aware designs.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

cached_network_image, flutter, google_fonts

More

Packages that depend on flutter_common_components

Packages that implement flutter_common_components