Skip to content

Instantly share code, notes, and snippets.

@thanhtunguet
Created July 27, 2025 15:52
Show Gist options
  • Select an option

  • Save thanhtunguet/a01bddae3a9a73c51630855365a31205 to your computer and use it in GitHub Desktop.

Select an option

Save thanhtunguet/a01bddae3a9a73c51630855365a31205 to your computer and use it in GitHub Desktop.
MobilePreview
import 'package:flutter/material.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: Scaffold(
body: Center(
child: Text('Hello, from embedded DartPad!'),
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment