test_plugin_rehan 0.0.5
test_plugin_rehan: ^0.0.5 copied to clipboard
Testing flutter plugin for example code
example/lib/example.dart
import 'package:flutter/material.dart';
void main() {
runApp(const MyAppExample());
}
class MyAppExample extends StatelessWidget {
const MyAppExample({super.key});
@override
Widget build(BuildContext context) {
return const Placeholder();
}
}