Skip to content

Instantly share code, notes, and snippets.

@5lineofcode
Created December 18, 2019 07:09
Show Gist options
  • Save 5lineofcode/3615a6aa1e67588a92e2e21d155529be to your computer and use it in GitHub Desktop.
Save 5lineofcode/3615a6aa1e67588a92e2e21d155529be to your computer and use it in GitHub Desktop.
Account View Model
import 'package:flutter/material.dart';
class AccountViewModel extends ChangeNotifier {
String message = "";
onRegisterClick() {
message = "Your account has been Created";
notifyListeners();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment