Untitled
Anonymous
plain_text
03/11/2023 8:53 PM
856 B
14
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...