We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
onPressed: () async { //blocs.homePageBloc.onClickScheduleReview(); //Navigator.of(context).push(MaterialPageRoute(builder: (BuildContext context) => ScheduleReviewPage())); Map<PermissionGroup, PermissionStatus> permissions = await PermissionHandler().requestPermissions([PermissionGroup.storage]); bool isShown = await PermissionHandler().shouldShowRequestPermissionRationale(PermissionGroup.storage); String appDocDir; await getTemporaryDirectory().then((onValue) { appDocDir = onValue.path; }); final res = const ListToCsvConverter().convert([['aaa', ',', 'ccc'], ['barra n \n']]); print(greenPen("[HomePage] tempDir: " + appDocDir)); File f = new File(appDocDir + "b.csv"); f.writeAsString(res); blocs.providers.databaseProvider.uploadFile(f, 'csv', "c", "nnn"); },
Is the output right? Tried to follow the official example.
Edit: solved by using ';' but still have a problem with ','
Edit: solved by using field delimiter ';'
The text was updated successfully, but these errors were encountered:
Excel is a very bad CSV reader / writer.
I will however try to improve the default values in a future release.
(Excel is for instance still not able to read UTF8 encoded CSV without manual intervention.)
⇒ Leaving this issue open as a reminder to improve the default values (/ mentioning Excel somewhere)
Sorry, something went wrong.
No branches or pull requests
Is the output right? Tried to follow the official example.
Edit: solved by using ';' but still have a problem with ','
Edit: solved by using field delimiter ';'
The text was updated successfully, but these errors were encountered: