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

Collection of androssy_widgets with advanced styling and customization.

example/lib/main.dart

import 'package:example/gesture.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(
      title: 'Flutter Androssy Kits',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
        buttonTheme: ButtonThemeData(
          padding: const EdgeInsets.only(
            left: 24,
            right: 20,
            top: 12,
            bottom: 12,
          ),
          colorScheme: ColorScheme.fromSeed(
            seedColor: Colors.blue,
            primary: Colors.blue,
            secondary: Colors.blue.withOpacity(0.1),
            tertiary: Colors.grey.shade200,
            onPrimary: Colors.white,
            onSecondary: Colors.blue,
            onTertiary: Colors.black38,
          ),
        ),
      ),
      home: const GestureExample(),
    );
  }
}
3
likes
140
points
294
downloads

Publisher

unverified uploader

Weekly Downloads

Collection of androssy_widgets with advanced styling and customization.

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (license)

Dependencies

cached_network_image, cached_network_image_platform_interface, flutter, flutter_cache_manager, flutter_svg

More

Packages that depend on flutter_androssy_kits