hybrid_core 0.0.2 copy "hybrid_core: ^0.0.2" to clipboard
hybrid_core: ^0.0.2 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(),
    );
  }
}