hybrid_os 0.0.1 copy "hybrid_os: ^0.0.1" to clipboard
hybrid_os: ^0.0.1 copied to clipboard

The os library of the Hybrid SDK.

example/lib/main.dart

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(),
    );
  }
}