Answers for "convert file as file in flutter"

0

convert string to file flutter

Container(
     decoration: BoxDecoration(
         image: DecorationImage(
              image: FileImage(File(path))
         )
    )
)
Posted by: Guest on June-09-2021
0

write and read to file in flutter

Future<File> writeCounter(int counter) async {
  final file = await _localFile;

  // Write the file.
  return file.writeAsString('$counter');
}
Posted by: Guest on January-10-2021

Browse Popular Code Answers by Language