getJoinButton method
Implementation
Widget getJoinButton() {
return ElevatedButton(
style: getButtonStyle(Colors.blueAccent, Colors.greenAccent),
onPressed: () => client.joinArea(),
child: Text("Join",style: getButtonTextStyle()));
}