Skip to content

Instantly share code, notes, and snippets.

View VFortier's full-sized avatar

Vincent Fortier VFortier

View GitHub Profile
@justinmc
justinmc / main.dart
Created February 23, 2024 00:58
Shows how keyboard shortcuts can interfere with text input, and how to solve that.
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});