flutter_dev_catalyst 1.0.2 copy "flutter_dev_catalyst: ^1.0.2" to clipboard
flutter_dev_catalyst: ^1.0.2 copied to clipboard

A comprehensive Flutter plugin that accelerates development with smart automation, reducing boilerplate code and development time by 60%.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_dev_catalyst/flutter_dev_catalyst.dart';
import 'screens/home_screen.dart';

void main() async {
  WidgetsFlutterBinding.ensureInitialized();

  // Initialize DevCatalyst
  await DevCatalyst.initialize(
    apiBaseUrl: 'https://jsonplaceholder.typicode.com',
    enableLogging: true,
    logLevel: LogLevel.debug,
  );

  runApp(const MyApp());
}

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'DevCatalyst Example',
      debugShowCheckedModeBanner: false,
      theme: AppTheme.lightTheme,
      darkTheme: AppTheme.darkTheme,
      themeMode: ThemeMode.system,
      home: const HomeScreen(),
    );
  }
}
0
likes
160
points
186
downloads

Publisher

unverified uploader

Weekly Downloads

A comprehensive Flutter plugin that accelerates development with smart automation, reducing boilerplate code and development time by 60%.

Repository (GitHub)
View/report issues

Topics

#flutter-plugin #api-client #ui-components #storage #utilities

Documentation

API reference

License

MIT (license)

Dependencies

cached_network_image, connectivity_plus, dio, equatable, flutter, flutter_cache_manager, flutter_screenutil, flutter_secure_storage, get_it, http, intl, logger, plugin_platform_interface, provider, shared_preferences

More

Packages that depend on flutter_dev_catalyst