Skip to content

Instantly share code, notes, and snippets.

@Chralu
Last active July 20, 2022 16:47
Show Gist options
  • Save Chralu/a8dc5ee9145b73a5a13043c0cc790c96 to your computer and use it in GitHub Desktop.
Save Chralu/a8dc5ee9145b73a5a13043c0cc790c96 to your computer and use it in GitHub Desktop.
Flutter101 - Simple widget

Flutter101 - Simple widget

Created with <3 with dartpad.dev.

// Copyright (c) 2022, TheTribe.io
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return const Center(
child: Text(
"Bonjour à tous",
textDirection: TextDirection.ltr,
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment