0 purchases
wuchuheng ui
know whether this package might be useful for them.
Features #
Getting started #
start using the package.
$ flutter pub add wuchuheng_ui
copied to clipboard
Usage #
import 'package:wuchuheng_ui/wuchuheng_ui.dart';
import 'package:flutter/material.dart';
class DialogDemo extends StatelessWidget {
const ({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Column(
children: [
ElevatedButton(onPressed: () => onDialog(context, title: 'dialog'), child: const Text('Show dialog')),
ElevatedButton(onPressed: () => onDialog(context, title: 'bottomMenu'), child: const Text('Show bottom Menu')),
],
);
}
}
copied to clipboard
Additional information #
contribute to the package, how to file issues, what response they can expect
from the package authors, and more.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.