sugoi 1.0.0+1 copy "sugoi: ^1.0.0+1" to clipboard
sugoi: ^1.0.0+1 copied to clipboard

outdated

A set of interesting and fun UI components, animations and routes for Flutter.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:sugoi_gallery/home_page.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Sugoi Gallery',
      theme: ThemeData(
        primarySwatch: Colors.red,
      ),
      home: const HomePage(),
      builder: (context, child) {
        return Scaffold(
          body: child,
        );
      },
    );
  }
}
0
likes
0
pub points
0%
popularity

Publisher

verified publisherjfk.dev

A set of interesting and fun UI components, animations and routes for Flutter.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on sugoi