skycosmic 0.0.10
skycosmic: ^0.0.10 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', type: 'component');
// Generate a card component named 'MyCard'
// using the 'card' template.
CosmicGenerator.generate('MyCard', type: 'component');
print('Example finished. Check lib/components for generated files.');
}