hybrid_os_linux 0.0.2 copy "hybrid_os_linux: ^0.0.2" to clipboard
hybrid_os_linux: ^0.0.2 copied to clipboard

PlatformLinux

Linux implementation of the hybrid_os plugin.

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