hiro 0.0.1 copy "hiro: ^0.0.1" to clipboard
hiro: ^0.0.1 copied to clipboard

Generate arguments class and builder function for widget page.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:hiro_example/sample_page.dart';

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

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: SamplePage(0, text: 'MyApp'),
    );
  }
}
0
likes
110
pub points
0%
popularity

Publisher

unverified uploader

Generate arguments class and builder function for widget page.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

analyzer, build, source_gen

More

Packages that depend on hiro