Fix appBootScreenMessage

This commit is contained in:
Feodor Fitsner 2025-03-04 11:47:07 -08:00
parent 7ddff9625a
commit a9b779d9af
1 changed files with 1 additions and 1 deletions

View File

@ -336,7 +336,7 @@ class BootScreen extends StatelessWidget {
const SizedBox( const SizedBox(
height: 10, height: 10,
), ),
Text("{{ appBootScreenMessage }}", style: Theme.of(context).textTheme.bodySmall,) Text(appBootScreenMessage, style: Theme.of(context).textTheme.bodySmall,)
], ],
), ),
), ),