nomos_flutter 0.63.56
nomos_flutter: ^0.63.56 copied to clipboard
Drive the real Nomos GitHolon from a Flutter app — a local-first domain runtime. Apple runs the release-pinned native kernel; Android and web acquire and retain the release-pinned WASM runtime. Write [...]
example/lib/main.dart
import 'package:flutter/material.dart';
void main() => runApp(const MaterialApp(home: GeneratedApplicationExample()));
class GeneratedApplicationExample extends StatelessWidget {
const GeneratedApplicationExample({super.key});
@override
Widget build(BuildContext context) => const Scaffold(
body: Center(
child: Text(
'Import your generated application package and start with '
'<Domain>Application.home(...).',
),
),
);
}