This commit is contained in:
Felipe
2023-07-31 13:21:53 -05:00
parent b0d88fc68a
commit 5b6fe18686
+1 -3
View File
@@ -310,8 +310,6 @@ class _ProfileWebScreenState extends State<ProfileWebScreen> {
@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<ProfileWebScreen> {
}).toList(),
decoration: InputDecoration(
prefixIcon: const Icon(Icons.near_me),
hintText: _ciudad == null ? 'Ciudad' : _ciudad!,
hintText: _ciudad,
),
);
}