cpd_2022_energy/lib/models/MyInputModel.dart

12 lines
239 B
Dart

import 'package:flutter/cupertino.dart';
class MyInputModel extends ChangeNotifier {
String _text = "Hallo Welt";
String get currentText => _text;
void changeText(String newText) {
_text = newText;
notifyListeners();
}
}