hybrid_core 0.0.3
hybrid_core: ^0.0.3 copied to clipboard
The core library of the Hybrid SDK.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'view/view.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({
super.key,
});
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: OSView(),
);
}
}