We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e64f654 commit fa6c972Copy full SHA for fa6c972
1 file changed
example/lib/features/permission_callback_demo.dart
@@ -74,7 +74,6 @@ class _PermissionCallbackDemoState extends State<PermissionCallbackDemo> {
74
try {
75
for (int i = 0; i < _sampleFiles.length; i++) {
76
final fileName = _sampleFiles[i];
77
- final filePath = [await getDataDirPath(), fileName].join('/');
78
79
// Create rich demo content with different data for each file
80
final fileNumber = i + 1;
@@ -100,7 +99,7 @@ demo:exampleData$fileNumber
100
99
101
if (!mounted) return;
102
103
- await writePod(filePath, demoContent);
+ await writePod(fileName, demoContent);
104
}
105
} catch (e) {
106
debugPrint('❌ [CallbackDemo] Error creating demo files: $e');
0 commit comments