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

flutter_boilerplate_tool is a command-line utility designed to simplify the creation of boilerplate code for Flutter projects.

example/main.dart

import 'package:flutter_boilerplate_tool/flutter_boilerplate_tool.dart';
import 'package:flutter_boilerplate_tool/project.dart';

void main() {
  print('Running flutter_boilerplate_tool example...');

  Project project = Project(
    projectImportName: 'test_app',
    lightThemeColors: LightThemeColors(
      primaryColor: 'f9d6e3',
      primaryVariantColor: 'f9d6e3',
      textColor: '000000',
    ),
    darkThemeColors: DarkThemeColors(
      primaryColor: 'efacda',
      primaryVariantColor: 'f9d6e3',
      textColor: '000000',
    ),
    screens: ['home', 'profile', 'settings'],
    currentTheme: 'light',
  );

  // Call the main function of your CLI tool
  createBoilerplateCode(project);
}
7
likes
140
points
28
downloads

Publisher

verified publisherabdulmoizwali.me

Weekly Downloads

flutter_boilerplate_tool is a command-line utility designed to simplify the creation of boilerplate code for Flutter projects.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

args, yaml

More

Packages that depend on flutter_boilerplate_tool