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 @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
String city = _ciudad.toString();
return Scaffold( return Scaffold(
backgroundColor: const Color(0xFFD6F4FF), backgroundColor: const Color(0xFFD6F4FF),
appBar: PopAppbar( appBar: PopAppbar(
@@ -460,7 +458,7 @@ class _ProfileWebScreenState extends State<ProfileWebScreen> {
}).toList(), }).toList(),
decoration: InputDecoration( decoration: InputDecoration(
prefixIcon: const Icon(Icons.near_me), prefixIcon: const Icon(Icons.near_me),
hintText: _ciudad == null ? 'Ciudad' : _ciudad!, hintText: _ciudad,
), ),
); );
} }