From f09c82886476f882664bf8eeb82abf914c40e536 Mon Sep 17 00:00:00 2001 From: Matthew Patrick <Matthew.535200018@stu.untar.ac.id> Date: Tue, 26 Apr 2022 15:28:37 +0700 Subject: [PATCH] Register_Error - made the text flexible instead of hardcoded --- lib/components/register_error.dart | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/lib/components/register_error.dart b/lib/components/register_error.dart index ecce460..244cb2c 100644 --- a/lib/components/register_error.dart +++ b/lib/components/register_error.dart @@ -61,13 +61,15 @@ class RegisterErrorState extends State<RegisterError> { Row( mainAxisAlignment: MainAxisAlignment.center, children: const [ - Text( - "An error has occured\nMake sure to check\nif your email has been \nregistered before.", - textAlign: TextAlign.center, - style: TextStyle( - color: Colors.white, - fontWeight: FontWeight.bold, - fontSize: 25), + Flexible( + child: Text( + "An error has occured Make sure to check if your email has been registered before.", + textAlign: TextAlign.center, + style: TextStyle( + color: Colors.white, + fontWeight: FontWeight.bold, + fontSize: 25), + ), ), ], )