PWA Fundvelo der Caritas.
Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
| 123456789101112131415161718192021222324 |
- using System;
-
- namespace cwebplusApp.Shared {
- public class AppState {
-
- private bool _loggedIn;
- public event Action OnChange;
- public bool LoggedIn {
- get { return _loggedIn; }
- set {
- if (_loggedIn != value) {
- _loggedIn = value;
- NotifyStateChanged();
- }
- }
- }
-
- public void NotifyChanged() {
- NotifyStateChanged();
- }
-
- private void NotifyStateChanged() => OnChange?.Invoke();
- }
- }
|