cpd_2022_zi/lib/providers/page_provider.dart

11 lines
182 B
Dart
Raw Normal View History

2023-03-03 12:48:19 +01:00
import 'package:flutter/material.dart';
class PageProvider extends ChangeNotifier {
bool showForm = false;
void swap() {
showForm = !showForm;
notifyListeners();
}
}