yevgeniaronov

Results 6 comments of yevgeniaronov

i think you must add an orderBy and create an index. ref = firestore .collection('users') .where('uid', isNotEqualTo: currentUid) **.orderBy('uid');** geo .collection(ref: ref ) .within(center: centerPoint, radius: 0.5, field: 'location'); and...

actually, the solution i provided before doesn't work, it just clears out the error, but the stream is empty (even though it should provide data). in constrast isEqualTo combination works...

i have sort of the same issue: ` var collectionRef = Firestore.instance.collection('/user_data').where('gender', isEqualTo: 'male'); ` ` return geo .collection(collectionRef: collectionRef.reference()) .within(center: center, radius: 1, field: 'location');` it totally ignores the...

managed to fix this by adding the 'mandatory' object to 'video': ``` var stream = await navigator.mediaDevices.getUserMedia({ 'video': { 'facingMode': 'user', 'mandatory': { 'minWidth': '640', 'minHeight': '480', }, }, 'audio':...

have the same issue on s23 plus with swiftkey (haven't checked other devices)

you may have forgotten to add js sdk script in web/index.html? https://pub.dev/packages/google_maps_flutter_web#usage