Skip to content

Instantly share code, notes, and snippets.

@umuieme
Last active October 16, 2022 03:35
Show Gist options
  • Save umuieme/26af235b8f41744e16d24ad786c8faff to your computer and use it in GitHub Desktop.
Save umuieme/26af235b8f41744e16d24ad786c8faff to your computer and use it in GitHub Desktop.
A stateless widget with const constructor live template
import 'package:flutter/material.dart';
class $WidgetName$ extends StatelessWidget {
const $WidgetName$({super.key});
@override
Widget build(BuildContext context) {
return Container($END$);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment