From 5b6fe18686abc744ef7db97807ef9e0bb7fef1e7 Mon Sep 17 00:00:00 2001 From: Felipe Date: Mon, 31 Jul 2023 13:21:53 -0500 Subject: [PATCH] update --- lib/src/screens/profile_web.dart | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/src/screens/profile_web.dart b/lib/src/screens/profile_web.dart index c195420..7418a34 100644 --- a/lib/src/screens/profile_web.dart +++ b/lib/src/screens/profile_web.dart @@ -310,8 +310,6 @@ class _ProfileWebScreenState extends State { @override Widget build(BuildContext context) { - String city = _ciudad.toString(); - return Scaffold( backgroundColor: const Color(0xFFD6F4FF), appBar: PopAppbar( @@ -460,7 +458,7 @@ class _ProfileWebScreenState extends State { }).toList(), decoration: InputDecoration( prefixIcon: const Icon(Icons.near_me), - hintText: _ciudad == null ? 'Ciudad' : _ciudad!, + hintText: _ciudad, ), ); }