lynx 0.0.1-dev.1 copy "lynx: ^0.0.1-dev.1" to clipboard
lynx: ^0.0.1-dev.1 copied to clipboard

Running Lynx apps in Flutter

example/lib/main.dart

import 'package:flutter/material.dart';

void main() {
  runApp(const MainApp());
}

class MainApp extends StatelessWidget {
  const MainApp({super.key});

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: Scaffold(
        body: Center(
          child: Text('Hello World!'),
        ),
      ),
    );
  }
}
4
likes
0
points
10
downloads

Publisher

unverified uploader

Weekly Downloads

Running Lynx apps in Flutter

License

unknown (license)

Dependencies

flutter

More

Packages that depend on lynx