Flutter Runner
Ready
Run
lib/main.dart
Load demo
import 'package:flutter/material.dart'; void main() => runApp(const MyApp()); class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { return MaterialApp( debugShowCheckedModeBanner: false, home: Scaffold( appBar: AppBar(title: const Text('Hello Flutter')), body: Center( child: Column( mainAxisSize: MainAxisSize.min, children: [ const Icon(Icons.flutter_dash, size: 80, color: Colors.blue), const SizedBox(height: 16), Text( 'Running on server!', style: Theme.of(context).textTheme.headlineMedium, ), const SizedBox(height: 8), const Text('Rendered via WebSocket stream'), ], ), ), ), ); } }
Write Flutter code and press
Run
.
The app compiles on the server and streams here via WebSocket.
W
H