File tree Expand file tree Collapse file tree 4 files changed +6
-9
lines changed
android/app/src/main/res/drawable
homeComponent/view/contactCard Expand file tree Collapse file tree 4 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ class ContactCardLoadingView extends StatelessWidget {
23
23
children: [
24
24
ShimmerView (
25
25
child: PlaceholderText (
26
- text: "max.mustermann@tum.de" ,
26
+ text: "StudentCard" . toUpperCase () ,
27
27
style: Theme .of (context).textTheme.bodySmall? .copyWith (
28
28
color: Colors .grey,
29
29
fontWeight: FontWeight .w700,
@@ -36,14 +36,11 @@ class ContactCardLoadingView extends StatelessWidget {
36
36
style: Theme .of (context).textTheme.headlineSmall,
37
37
),
38
38
),
39
- const ShimmerView (
40
- child: PlaceholderText (text: "go43hum" ),
41
- ),
42
39
const ShimmerView (
43
40
child: PlaceholderText (text: "max.mustermann@tum.de" ),
44
41
),
45
42
const ShimmerView (
46
- child: PlaceholderText (text: "max.mustermann@tum.de " ),
43
+ child: PlaceholderText (text: "go42tum " ),
47
44
),
48
45
],
49
46
),
Original file line number Diff line number Diff line change @@ -89,9 +89,10 @@ class _ContactCardViewState extends ConsumerState<ContactCardView> {
89
89
data.email,
90
90
maxLines: 1 ,
91
91
),
92
- Text (
93
- profile.tumID ?? "go42tum" ,
94
- ),
92
+ if (profile.tumID != null )
93
+ Text (
94
+ profile.tumID! ,
95
+ ),
95
96
],
96
97
),
97
98
),
Original file line number Diff line number Diff line change @@ -170,7 +170,6 @@ class _CampusAppState extends ConsumerState<CampusApp>
170
170
void firebaseCallback () {
171
171
if (! kDebugMode) {
172
172
final remoteConfig = FirebaseRemoteConfig .instance;
173
- remoteConfig.fetchAndActivate ();
174
173
remoteConfig.fetchAndActivate ().then ((value) {
175
174
if (value) {
176
175
_handleFirebaseValues (
You can’t perform that action at this time.
0 commit comments