Hasan

Results 4 issues of Hasan

From [flutter docs](https://docs.flutter.dev/cookbook/lists/long-lists): > The standard [ListView](https://api.flutter.dev/flutter/widgets/ListView-class.html) constructor works well for small lists. To work with lists that contain a large number of items, it’s best to use the [ListView.builder](https://api.flutter.dev/flutter/widgets/ListView/ListView.builder.html)...

### Please check the following before submitting a new issue. - [ ] I have searched the [existing issues](https://github.com/baseflow/flutter-geolocator/issues). - [X] I have carefully [read the documentation](https://github.com/Baseflow/flutter-geolocator/blob/main/geolocator/README.md) and verified I...

type: bug
platform: android
P2

**Describe the bug** When we mix Arabic and English words, the order of the English words is not correct when they split into multiple lines **To reproduce** ```dart Future _generatePdf(PdfPageFormat...

bug
needs triage

Hello, When using `showDirections` with waypoints: ```dart await MapLauncher.showDirections( mapType: map, destination: Coords( coords.latitude, coords.longitude, ), waypoints: waypoints ?.mapIndexed( (index, item) => Waypoint( item.latitude, item.longitude, 'Location ${index + 1}', ),...