skycosmic 0.0.9
skycosmic: ^0.0.9 copied to clipboard
A professional Flutter package providing ready-to-use UI components with CLI support, enabling rapid and consistent UI development.
example/skycosmic_example.dart
import 'package:skycosmic/skycosmic.dart';
void main() {
print('Running skycosmic example...');
// Generate a button component named 'MyButton'
// using the default 'button' template.
CosmicGenerator.generate('MyButton', templateName: 'button');
// Generate a card component named 'MyCard'
// using the 'card' template.
CosmicGenerator.generate('MyCard', templateName: 'card');
print('Example finished. Check lib/components for generated files.');
}