flutter_androssy 0.2.8-alpha1 copy "flutter_androssy: ^0.2.8-alpha1" to clipboard
flutter_androssy: ^0.2.8-alpha1 copied to clipboard

outdated

Collection of service with advanced style and controlling system.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_androssy/widgets.dart';

Future<void> main() async {
  runApp(const Application());
}

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      title: "Androssy",
      home: Scaffold(
        body: Center(
          child: LinearLayout(
            children: [
              const ImageView(
                marginTop: 24,
                padding: 24,
                width: 100,
                shape: ViewShape.squire,
              ),
              IconView(
                marginTop: 24,
                icon: Icons.edit,
                padding: 24,
                size: 100,
                shape: ViewShape.circular,
                tint: Colors.orange,
                rippleColor: Colors.black,
                backgroundState: ValueState(
                  ternary: Colors.red.withOpacity(0.1),
                  primary: Colors.orange.withOpacity(0.1),
                  secondary: Colors.orange,
                ),
                tintState: const ValueState(
                  primary: Colors.orange,
                  secondary: Colors.white,
                  ternary: Colors.red,
                ),
                onClick: (c) {
                  c.logValue;
                },
                onHover: (c) {
                  c.logValue;
                },
              ),
            ],
          ),
        ),
      ),
    );
  }
}
5
likes
0
points
351
downloads

Publisher

unverified uploader

Weekly Downloads

Collection of service with advanced style and controlling system.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

badges, cached_network_image, flutter, flutter_svg, intl, shared_preferences

More

Packages that depend on flutter_androssy