add todos app

This commit is contained in:
Fabien Freling 2026-04-28 13:47:29 +02:00
parent 25a62f9c43
commit dfff9d383c
28 changed files with 648 additions and 1 deletions

12
todos/unloaded.gd Normal file
View file

@ -0,0 +1,12 @@
extends CenterContainer
func _ready():
$FileDialog.mode = FileDialog.FILE_MODE_OPEN_FILE
$FileDialog.access = FileDialog.ACCESS_FILESYSTEM
$FileDialog.use_native_dialog = true
func _on_button_pressed():
$FileDialog.show()
func _on_file_dialog_file_selected(path):
Global.load_db(path)