Untitled
unknown
plain_text
3 years ago
642 B
6
Indexable
Row signUpOption(){
return Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const Text("Don't have an account?",
style: TextStyle(color: Colors.white60),),
GestureDetector(
onTap: () {
Navigator.push(
context,
MaterialPageRoute(builder: (context) => const SignInScreen())
);
//Navigator.push(context,
//MaterialPageRoute(builder: (context) => SignUpScreen()));
},
child: const Text(" Sign Up",
style: TextStyle(color: Colors.white, fontWeight: FontWeight.bold),
),
)
],
);
}
Editor is loading...