This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:dog_food/constants/constants.dart'; | |
import 'package:dog_food/constants/themes.dart'; | |
import 'package:dog_food/screens/home_page.dart'; | |
import 'package:flutter/material.dart'; | |
// Model to hold registration data | |
class RegistrationData { | |
String dogName = ''; | |
String gender = 'Male'; | |
String breed = ''; |