loadSampleNotifications method

void loadSampleNotifications()

Implementation

void loadSampleNotifications() {
  final samples = [
    AppNotification(
      id: '1',
      title: 'Welcome!',
      body: 'Welcome to Upgrade. Start building amazing apps.',
    ),
    AppNotification(
      id: '2',
      title: 'New Feature',
      body: 'Dark mode is now available. Try it in Settings.',
    ),
    AppNotification(
      id: '3',
      title: 'Tip',
      body: 'Long press any item for more options.',
    ),
  ];
  _notifications.addAll(samples);
  notifyListeners();
}