mirror of
https://github.com/zontreck/NBTEditor
synced 2024-11-21 13:48:56 -07:00
Fix a syntax problem
This commit is contained in:
parent
3ced797407
commit
6172338a00
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ class EditorState extends State<Editor> {
|
||||||
if (result != null) {
|
if (result != null) {
|
||||||
// Do something with the selected file path
|
// Do something with the selected file path
|
||||||
print('Selected file path: $filePath');
|
print('Selected file path: $filePath');
|
||||||
filePath = result!.files.first.path;
|
filePath = result.files.first.path;
|
||||||
} else {
|
} else {
|
||||||
// User canceled the picker
|
// User canceled the picker
|
||||||
print('File selection canceled.');
|
print('File selection canceled.');
|
||||||
|
|
Loading…
Reference in a new issue