strategy 0.0.2 copy "strategy: ^0.0.2" to clipboard
strategy: ^0.0.2 copied to clipboard

The package aims to improve a code organization and a visual clarity with Strategy Template.

example/lib/main.dart

import 'package:flutter/material.dart';

import '/screens/contacts/page/contacts.dart';

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

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

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: ContactsPage(),
    );
  }
}
0
likes
130
pub points
0%
popularity

Publisher

verified publisherio.stglib.space

The package aims to improve a code organization and a visual clarity with Strategy Template.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

More

Packages that depend on strategy