From a9b779d9afee221f6f8146acedc1f3f3ed44d666 Mon Sep 17 00:00:00 2001 From: Feodor Fitsner Date: Tue, 4 Mar 2025 11:47:07 -0800 Subject: [PATCH] Fix appBootScreenMessage --- {{cookiecutter.out_dir}}/lib/main.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.out_dir}}/lib/main.dart b/{{cookiecutter.out_dir}}/lib/main.dart index aeac372..7e51f7d 100644 --- a/{{cookiecutter.out_dir}}/lib/main.dart +++ b/{{cookiecutter.out_dir}}/lib/main.dart @@ -336,7 +336,7 @@ class BootScreen extends StatelessWidget { const SizedBox( height: 10, ), - Text("{{ appBootScreenMessage }}", style: Theme.of(context).textTheme.bodySmall,) + Text(appBootScreenMessage, style: Theme.of(context).textTheme.bodySmall,) ], ), ),