GSI - Employe Self Service Mobile
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
501 B

2 months ago
  1. import 'package:flutter/cupertino.dart';
  2. import 'meeting.dart';
  3. class MeetingProvider extends ChangeNotifier{
  4. List<Meeting> meetings = [
  5. Meeting('Conference 1', DateTime.now(), DateTime.now().add(Duration(hours: 2)), const Color(0xFF0F8644), false),
  6. Meeting('Conference 2', DateTime.now(), DateTime.now().add(Duration(hours: 2)), const Color(0xFF0F8644), false),
  7. Meeting('Conference 3', DateTime.now(), DateTime.now().add(Duration(hours: 2)), const Color(0xFF0F8644), false),
  8. ];
  9. }