[+] Create family views

This commit is contained in:
Hykilpikonna
2021-01-24 18:36:40 -05:00
parent cdbc7a5dd4
commit c8484d4cc1
2 changed files with 197 additions and 6 deletions
+23
View File
@@ -136,6 +136,8 @@ class ManageVC: UIViewController
@IBOutlet weak var lUsername: UILabel!
@IBOutlet weak var lJoinDate: UILabel!
@IBOutlet weak var lCurrentFamily: UILabel!
/**
Called when the user switched to the account tab (whether the view container is hidden or not)
*/
@@ -177,3 +179,24 @@ class ManageVC: UIViewController
}
}
}
/**
Family view controller that displays family info or create/join family buttons
*/
class FamilyVC: UIViewController
{
@IBAction func btnCreate(_ sender: Any)
{
}
@IBAction func btnJoin(_ sender: Any)
{
}
}
class FamilyCreateJoinVC: UIViewController
{
@IBOutlet weak var lFamilyNameOrId: UILabel!
}