Guilherme Jacobus
Guilherme Jacobus
> Can you please give more data? What do you want to have on the screen and what is the problem? So, you know apps like uber eats, that shows...
> Ok. Use any widgets you want. > Just for example (you can create your own widget exactly as you have in design) you can try https://api.flutter.dev/flutter/material/ListTile-class.html Ok, but my...
Ok, this is where I am trying to display: `Container( child: StreamBuilder( stream: showNearbyCompanies(), builder: (context, snapshot) { if (!snapshot.hasData) { return Text("Loading"); } return ListView( children: [ for (var...
Hey, @awaik, can you help me with one more thing? I've done this, according to the GeoFlutterFire docs: `Stream nearbyComp() async* { var pos = await location.getLocation(); GeoFirePoint point =...
Hey, @awaik, Sorry for the late reply. Tried a few variations, but still don't know what to change. I did what you suggested, but it returns this error and I...
Tried chaning to this: `Container( child: StreamBuilder( stream: nearbyComp(), builder: (BuildContext context, AsyncSnapshot snapshot) { if (snapshot.hasError) { return Text('Something went wrong'); } if (snapshot.connectionState == ConnectionState.waiting) { return Text("Loading");...