Skip to content

Commit

Permalink
chore: Update default app name (#212)
Browse files Browse the repository at this point in the history
  • Loading branch information
lsetiawan authored Dec 4, 2024
1 parent 52e043f commit 7735152
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/support_sphere/lib/constants/string_catalog.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/// Strings used in the app
class AppStrings {
static const String appName = 'Support Sphere';
static const String appName = 'Resilience - Laurelhurst';
static const String signUpWelcome =
'Welcome to ${AppStrings.appName}\nCreate a new account and prepare with your community';
static const String testEmergencyBannerText = "This is a test emergency.";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
import 'package:ionicons/ionicons.dart';
import 'package:flutter/material.dart';
import 'package:support_sphere/constants/string_catalog.dart';

class IconLogo extends StatelessWidget {
const IconLogo({ Key? key }) : super(key: key);
Expand All @@ -25,7 +26,7 @@ const IconLogo({ Key? key }) : super(key: key);
),
),
Text(
'Support Sphere',
AppStrings.appName,
style: TextStyle(
fontSize: 22.0,
fontWeight: FontWeight.w900,
Expand Down

0 comments on commit 7735152

Please sign in to comment.