11 lines
182 B
Dart
11 lines
182 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class PageProvider extends ChangeNotifier {
|
||
|
bool showForm = false;
|
||
|
|
||
|
void swap() {
|
||
|
showForm = !showForm;
|
||
|
notifyListeners();
|
||
|
}
|
||
|
}
|