flutter_parts 0.0.1+1 copy "flutter_parts: ^0.0.1+1" to clipboard
flutter_parts: ^0.0.1+1 copied to clipboard

A practical UI component library that integrates multiple widgets commonly used in Flutter projects, aimed at helping developers build comprehensive UI effects within the shortest possible time frame.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:get_it/get_it.dart';

import 'app/injections.dart';

import 'app/router.dart';
import 'modules/index/index_view.dart';

void main() async {
  WidgetsFlutterBinding.ensureInitialized();
  GetitInjection.init();
  await GetIt.instance.allReady();
  runApp(const MyApp());
}

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

  @override
  Widget build(BuildContext context) {
    return GetMaterialApp(
      debugShowCheckedModeBanner: false,
      getPages: AppRoutes.routes,
      home: const IndexView(),
    );
  }
}
0
likes
130
points
16
downloads

Publisher

unverified uploader

Weekly Downloads

A practical UI component library that integrates multiple widgets commonly used in Flutter projects, aimed at helping developers build comprehensive UI effects within the shortest possible time frame.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

cupertino_icons, flutter, flutter_svg

More

Packages that depend on flutter_parts