hybrid_os_windows 0.0.2 hybrid_os_windows: ^0.0.2 copied to clipboard
Windows implementation of the hybrid_os plugin.
import 'package:flutter/material.dart';
import 'views.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({
super.key,
});
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: HomeView(),
);
}
}