chore: save config

This commit is contained in:
Kiruel 2025-06-17 23:49:59 +02:00
parent 1b26f91faa
commit dc228a038b
16 changed files with 779 additions and 91 deletions

View file

@ -12,3 +12,18 @@ snippet phr "AppLocalizations"
AppLocalizations.of(context)!.$1
snippet imploc "Import AppLocalizations"
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
snippet gap "Create a gap with const"
const Gap($1),
snippet useEffect "Create an empty useEffect"
useEffect(() {
$1
return;
}, []);
snippet clm "Create column with empty children"
Column(children: [
$1
],)
snippet row "Create row with empty children"
Row(children: [
$1
],)