├── .DS_Store ├── LICENSE ├── README.md ├── examples └── flet_notifications_example │ ├── .DS_Store │ ├── .gitignore │ ├── README.md │ ├── build │ ├── .DS_Store │ ├── .hash │ │ ├── icons │ │ ├── package │ │ ├── splashes │ │ ├── template-1 │ │ └── template-2 │ ├── apk │ │ ├── app-release.apk │ │ └── app-release.apk.sha1 │ ├── flutter-packages │ │ └── flet_notifications │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── pubspec.lock │ │ │ └── pubspec.yaml │ ├── flutter │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── .vars │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── mycompany │ │ │ │ │ │ │ └── flet_notifications_example │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ │ ├── android12splash.png │ │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ │ └── splash.png │ │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ │ ├── android12splash.png │ │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ │ └── splash.png │ │ │ │ │ │ ├── drawable-night-hdpi │ │ │ │ │ │ ├── android12splash.png │ │ │ │ │ │ └── splash.png │ │ │ │ │ │ ├── drawable-night-mdpi │ │ │ │ │ │ ├── android12splash.png │ │ │ │ │ │ └── splash.png │ │ │ │ │ │ ├── drawable-night-v21 │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── drawable-night-xhdpi │ │ │ │ │ │ ├── android12splash.png │ │ │ │ │ │ └── splash.png │ │ │ │ │ │ ├── drawable-night-xxhdpi │ │ │ │ │ │ ├── android12splash.png │ │ │ │ │ │ └── splash.png │ │ │ │ │ │ ├── drawable-night-xxxhdpi │ │ │ │ │ │ ├── android12splash.png │ │ │ │ │ │ └── splash.png │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ │ ├── android12splash.png │ │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ │ └── splash.png │ │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ │ ├── android12splash.png │ │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ │ └── splash.png │ │ │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ │ │ ├── android12splash.png │ │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ │ └── splash.png │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ │ └── ic_launcher.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── values-night-v31 │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ ├── values-v31 │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── app │ │ │ ├── app.zip │ │ │ └── app.zip.hash │ │ ├── images │ │ │ ├── favicon.png │ │ │ └── icon.png │ │ ├── ios │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Podfile │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ ├── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ │ ├── Icon-App-50x50@1x.png │ │ │ │ │ │ ├── Icon-App-50x50@2x.png │ │ │ │ │ │ ├── Icon-App-57x57@1x.png │ │ │ │ │ │ ├── Icon-App-57x57@2x.png │ │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ │ ├── Icon-App-72x72@1x.png │ │ │ │ │ │ ├── Icon-App-72x72@2x.png │ │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ │ ├── LaunchBackground.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ └── darkbackground.png │ │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ │ ├── LaunchImageDark.png │ │ │ │ │ │ ├── LaunchImageDark@2x.png │ │ │ │ │ │ ├── LaunchImageDark@3x.png │ │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── Runner-Bridging-Header.h │ │ │ ├── RunnerTests │ │ │ │ └── RunnerTests.swift │ │ │ └── exportOptions.plist │ │ ├── linux │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── flutter │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── generated_plugin_registrant.cc │ │ │ │ ├── generated_plugin_registrant.h │ │ │ │ └── generated_plugins.cmake │ │ │ ├── main.cc │ │ │ ├── my_application.cc │ │ │ └── my_application.h │ │ ├── macos │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── Flutter-Debug.xcconfig │ │ │ │ ├── Flutter-Release.xcconfig │ │ │ │ └── GeneratedPluginRegistrant.swift │ │ │ ├── Podfile │ │ │ ├── Podfile.lock │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── app_icon_1024.png │ │ │ │ │ │ ├── app_icon_128.png │ │ │ │ │ │ ├── app_icon_16.png │ │ │ │ │ │ ├── app_icon_256.png │ │ │ │ │ │ ├── app_icon_32.png │ │ │ │ │ │ ├── app_icon_512.png │ │ │ │ │ │ └── app_icon_64.png │ │ │ │ ├── Base.lproj │ │ │ │ │ └── MainMenu.xib │ │ │ │ ├── Configs │ │ │ │ │ ├── AppInfo.xcconfig │ │ │ │ │ ├── Debug.xcconfig │ │ │ │ │ ├── Release.xcconfig │ │ │ │ │ └── Warnings.xcconfig │ │ │ │ ├── DebugProfile.entitlements │ │ │ │ ├── Info.plist │ │ │ │ ├── MainFlutterWindow.swift │ │ │ │ └── Release.entitlements │ │ │ └── RunnerTests │ │ │ │ └── RunnerTests.swift │ │ ├── pubspec.yaml │ │ ├── pubspec.yaml.orig │ │ ├── web │ │ │ ├── favicon.png │ │ │ ├── flutter_bootstrap.js │ │ │ ├── icons │ │ │ │ ├── Icon-192.png │ │ │ │ ├── Icon-512.png │ │ │ │ ├── Icon-maskable-192.png │ │ │ │ └── Icon-maskable-512.png │ │ │ ├── index.html │ │ │ ├── manifest.json │ │ │ ├── python-worker.js │ │ │ ├── python.js │ │ │ └── splash │ │ │ │ └── img │ │ │ │ ├── dark-1x.png │ │ │ │ ├── dark-2x.png │ │ │ │ ├── dark-3x.png │ │ │ │ ├── dark-4x.png │ │ │ │ ├── light-1x.png │ │ │ │ ├── light-2x.png │ │ │ │ ├── light-3x.png │ │ │ │ └── light-4x.png │ │ └── windows │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── flutter │ │ │ ├── CMakeLists.txt │ │ │ ├── generated_plugin_registrant.cc │ │ │ ├── generated_plugin_registrant.h │ │ │ └── generated_plugins.cmake │ │ │ └── runner │ │ │ ├── CMakeLists.txt │ │ │ ├── Runner.rc │ │ │ ├── flutter_window.cpp │ │ │ ├── flutter_window.h │ │ │ ├── main.cpp │ │ │ ├── resource.h │ │ │ ├── resources │ │ │ └── app_icon.ico │ │ │ ├── utils.cpp │ │ │ ├── utils.h │ │ │ ├── win32_window.cpp │ │ │ └── win32_window.h │ ├── macos │ │ └── flet-notifications-example.app │ │ │ └── Contents │ │ │ ├── Frameworks │ │ │ ├── App.framework │ │ │ │ ├── App │ │ │ │ ├── Resources │ │ │ │ └── Versions │ │ │ │ │ ├── A │ │ │ │ │ ├── App │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── flutter_assets │ │ │ │ │ │ │ ├── AssetManifest.bin │ │ │ │ │ │ │ ├── AssetManifest.json │ │ │ │ │ │ │ ├── FontManifest.json │ │ │ │ │ │ │ ├── NOTICES.Z │ │ │ │ │ │ │ ├── app │ │ │ │ │ │ │ ├── app.zip │ │ │ │ │ │ │ └── app.zip.hash │ │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ └── MaterialIcons-Regular.otf │ │ │ │ │ │ │ ├── packages │ │ │ │ │ │ │ ├── cupertino_icons │ │ │ │ │ │ │ │ └── assets │ │ │ │ │ │ │ │ │ └── CupertinoIcons.ttf │ │ │ │ │ │ │ └── wakelock_plus │ │ │ │ │ │ │ │ └── assets │ │ │ │ │ │ │ │ └── no_sleep.js │ │ │ │ │ │ │ └── shaders │ │ │ │ │ │ │ └── ink_sparkle.frag │ │ │ │ │ └── _CodeSignature │ │ │ │ │ │ └── CodeResources │ │ │ │ │ └── Current │ │ │ ├── FlutterMacOS.framework │ │ │ │ ├── FlutterMacOS │ │ │ │ ├── Resources │ │ │ │ └── Versions │ │ │ │ │ ├── A │ │ │ │ │ ├── FlutterMacOS │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ │ │ │ └── icudtl.dat │ │ │ │ │ └── _CodeSignature │ │ │ │ │ │ └── CodeResources │ │ │ │ │ └── Current │ │ │ ├── Python.framework │ │ │ │ ├── Python │ │ │ │ ├── Resources │ │ │ │ └── Versions │ │ │ │ │ ├── 3.12 │ │ │ │ │ ├── Python │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── _CodeSignature │ │ │ │ │ │ └── CodeResources │ │ │ │ │ └── Current │ │ │ ├── device_info_plus.framework │ │ │ │ ├── Resources │ │ │ │ ├── Versions │ │ │ │ │ ├── A │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── device_info_plus_privacy.bundle │ │ │ │ │ │ │ │ └── Contents │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ │ └── PrivacyInfo.xcprivacy │ │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ │ │ └── CodeResources │ │ │ │ │ │ └── device_info_plus │ │ │ │ │ └── Current │ │ │ │ └── device_info_plus │ │ │ ├── file_picker.framework │ │ │ │ ├── Resources │ │ │ │ ├── Versions │ │ │ │ │ ├── A │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── file_picker_privacy.bundle │ │ │ │ │ │ │ │ └── Contents │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ │ └── PrivacyInfo.xcprivacy │ │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ │ │ └── CodeResources │ │ │ │ │ │ └── file_picker │ │ │ │ │ └── Current │ │ │ │ └── file_picker │ │ │ ├── flutter_local_notifications.framework │ │ │ │ ├── Resources │ │ │ │ ├── Versions │ │ │ │ │ ├── A │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── flutter_local_notifications_privacy.bundle │ │ │ │ │ │ │ │ └── Contents │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ │ └── PrivacyInfo.xcprivacy │ │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ │ │ └── CodeResources │ │ │ │ │ │ └── flutter_local_notifications │ │ │ │ │ └── Current │ │ │ │ └── flutter_local_notifications │ │ │ ├── package_info_plus.framework │ │ │ │ ├── Resources │ │ │ │ ├── Versions │ │ │ │ │ ├── A │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── package_info_plus_privacy.bundle │ │ │ │ │ │ │ │ └── Contents │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ │ └── PrivacyInfo.xcprivacy │ │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ │ │ └── CodeResources │ │ │ │ │ │ └── package_info_plus │ │ │ │ │ └── Current │ │ │ │ └── package_info_plus │ │ │ ├── path_provider_foundation.framework │ │ │ │ ├── Resources │ │ │ │ ├── Versions │ │ │ │ │ ├── A │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── path_provider_foundation_privacy.bundle │ │ │ │ │ │ │ │ └── Contents │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ │ └── PrivacyInfo.xcprivacy │ │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ │ │ └── CodeResources │ │ │ │ │ │ └── path_provider_foundation │ │ │ │ │ └── Current │ │ │ │ └── path_provider_foundation │ │ │ ├── screen_retriever_macos.framework │ │ │ │ ├── Resources │ │ │ │ ├── Versions │ │ │ │ │ ├── A │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ │ │ └── CodeResources │ │ │ │ │ │ └── screen_retriever_macos │ │ │ │ │ └── Current │ │ │ │ └── screen_retriever_macos │ │ │ ├── serious_python_darwin.framework │ │ │ │ ├── Resources │ │ │ │ ├── Versions │ │ │ │ │ ├── A │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── python.bundle │ │ │ │ │ │ │ │ └── Contents │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ │ ├── site-packages │ │ │ │ │ │ │ │ ├── anyio │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ ├── _backends │ │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ │ ├── _asyncio.py │ │ │ │ │ │ │ │ │ │ └── _trio.py │ │ │ │ │ │ │ │ │ ├── _core │ │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ │ ├── _asyncio_selector_thread.py │ │ │ │ │ │ │ │ │ │ ├── _eventloop.py │ │ │ │ │ │ │ │ │ │ ├── _exceptions.py │ │ │ │ │ │ │ │ │ │ ├── _fileio.py │ │ │ │ │ │ │ │ │ │ ├── _resources.py │ │ │ │ │ │ │ │ │ │ ├── _signals.py │ │ │ │ │ │ │ │ │ │ ├── _sockets.py │ │ │ │ │ │ │ │ │ │ ├── _streams.py │ │ │ │ │ │ │ │ │ │ ├── _subprocesses.py │ │ │ │ │ │ │ │ │ │ ├── _synchronization.py │ │ │ │ │ │ │ │ │ │ ├── _tasks.py │ │ │ │ │ │ │ │ │ │ ├── _tempfile.py │ │ │ │ │ │ │ │ │ │ ├── _testing.py │ │ │ │ │ │ │ │ │ │ └── _typedattr.py │ │ │ │ │ │ │ │ │ ├── abc │ │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ │ ├── _eventloop.py │ │ │ │ │ │ │ │ │ │ ├── _resources.py │ │ │ │ │ │ │ │ │ │ ├── _sockets.py │ │ │ │ │ │ │ │ │ │ ├── _streams.py │ │ │ │ │ │ │ │ │ │ ├── _subprocesses.py │ │ │ │ │ │ │ │ │ │ ├── _tasks.py │ │ │ │ │ │ │ │ │ │ └── _testing.py │ │ │ │ │ │ │ │ │ ├── from_thread.py │ │ │ │ │ │ │ │ │ ├── lowlevel.py │ │ │ │ │ │ │ │ │ ├── pytest_plugin.py │ │ │ │ │ │ │ │ │ ├── streams │ │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ │ ├── buffered.py │ │ │ │ │ │ │ │ │ │ ├── file.py │ │ │ │ │ │ │ │ │ │ ├── memory.py │ │ │ │ │ │ │ │ │ │ ├── stapled.py │ │ │ │ │ │ │ │ │ │ ├── text.py │ │ │ │ │ │ │ │ │ │ └── tls.py │ │ │ │ │ │ │ │ │ ├── to_interpreter.py │ │ │ │ │ │ │ │ │ ├── to_process.py │ │ │ │ │ │ │ │ │ └── to_thread.py │ │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ │ │ ├── flet │ │ │ │ │ │ │ │ │ └── httpx │ │ │ │ │ │ │ │ ├── certifi │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ ├── __main__.py │ │ │ │ │ │ │ │ │ ├── cacert.pem │ │ │ │ │ │ │ │ │ └── core.py │ │ │ │ │ │ │ │ ├── flet │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ ├── ads │ │ │ │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ │ │ │ ├── app.py │ │ │ │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ │ ├── authorization.py │ │ │ │ │ │ │ │ │ │ ├── group.py │ │ │ │ │ │ │ │ │ │ ├── oauth_provider.py │ │ │ │ │ │ │ │ │ │ ├── oauth_token.py │ │ │ │ │ │ │ │ │ │ ├── providers │ │ │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ │ │ ├── auth0_oauth_provider.py │ │ │ │ │ │ │ │ │ │ │ ├── azure_oauth_provider.py │ │ │ │ │ │ │ │ │ │ │ ├── github_oauth_provider.py │ │ │ │ │ │ │ │ │ │ │ └── google_oauth_provider.py │ │ │ │ │ │ │ │ │ │ └── user.py │ │ │ │ │ │ │ │ │ ├── canvas │ │ │ │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ │ │ │ ├── cli.py │ │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ │ │ ├── adaptive_control.py │ │ │ │ │ │ │ │ │ │ ├── ads │ │ │ │ │ │ │ │ │ │ │ ├── banner.py │ │ │ │ │ │ │ │ │ │ │ ├── base_ad.py │ │ │ │ │ │ │ │ │ │ │ ├── interstitial.py │ │ │ │ │ │ │ │ │ │ │ └── native.py │ │ │ │ │ │ │ │ │ │ ├── alert_dialog.py │ │ │ │ │ │ │ │ │ │ ├── alignment.py │ │ │ │ │ │ │ │ │ │ ├── animated_switcher.py │ │ │ │ │ │ │ │ │ │ ├── animation.py │ │ │ │ │ │ │ │ │ │ ├── app_bar.py │ │ │ │ │ │ │ │ │ │ ├── audio.py │ │ │ │ │ │ │ │ │ │ ├── audio_recorder.py │ │ │ │ │ │ │ │ │ │ ├── auto_complete.py │ │ │ │ │ │ │ │ │ │ ├── autofill_group.py │ │ │ │ │ │ │ │ │ │ ├── badge.py │ │ │ │ │ │ │ │ │ │ ├── banner.py │ │ │ │ │ │ │ │ │ │ ├── blur.py │ │ │ │ │ │ │ │ │ │ ├── border.py │ │ │ │ │ │ │ │ │ │ ├── border_radius.py │ │ │ │ │ │ │ │ │ │ ├── bottom_app_bar.py │ │ │ │ │ │ │ │ │ │ ├── bottom_sheet.py │ │ │ │ │ │ │ │ │ │ ├── box.py │ │ │ │ │ │ │ │ │ │ ├── button.py │ │ │ │ │ │ │ │ │ │ ├── buttons.py │ │ │ │ │ │ │ │ │ │ ├── canvas │ │ │ │ │ │ │ │ │ │ │ ├── arc.py │ │ │ │ │ │ │ │ │ │ │ ├── canvas.py │ │ │ │ │ │ │ │ │ │ │ ├── circle.py │ │ │ │ │ │ │ │ │ │ │ ├── color.py │ │ │ │ │ │ │ │ │ │ │ ├── fill.py │ │ │ │ │ │ │ │ │ │ │ ├── line.py │ │ │ │ │ │ │ │ │ │ │ ├── oval.py │ │ │ │ │ │ │ │ │ │ │ ├── path.py │ │ │ │ │ │ │ │ │ │ │ ├── points.py │ │ │ │ │ │ │ │ │ │ │ ├── rect.py │ │ │ │ │ │ │ │ │ │ │ ├── shadow.py │ │ │ │ │ │ │ │ │ │ │ ├── shape.py │ │ │ │ │ │ │ │ │ │ │ └── text.py │ │ │ │ │ │ │ │ │ │ ├── card.py │ │ │ │ │ │ │ │ │ │ ├── charts │ │ │ │ │ │ │ │ │ │ │ ├── bar_chart.py │ │ │ │ │ │ │ │ │ │ │ ├── bar_chart_group.py │ │ │ │ │ │ │ │ │ │ │ ├── bar_chart_rod.py │ │ │ │ │ │ │ │ │ │ │ ├── bar_chart_rod_stack_item.py │ │ │ │ │ │ │ │ │ │ │ ├── chart_axis.py │ │ │ │ │ │ │ │ │ │ │ ├── chart_axis_label.py │ │ │ │ │ │ │ │ │ │ │ ├── chart_grid_lines.py │ │ │ │ │ │ │ │ │ │ │ ├── chart_point_line.py │ │ │ │ │ │ │ │ │ │ │ ├── chart_point_shape.py │ │ │ │ │ │ │ │ │ │ │ ├── line_chart.py │ │ │ │ │ │ │ │ │ │ │ ├── line_chart_data.py │ │ │ │ │ │ │ │ │ │ │ ├── line_chart_data_point.py │ │ │ │ │ │ │ │ │ │ │ ├── pie_chart.py │ │ │ │ │ │ │ │ │ │ │ └── pie_chart_section.py │ │ │ │ │ │ │ │ │ │ ├── checkbox.py │ │ │ │ │ │ │ │ │ │ ├── chip.py │ │ │ │ │ │ │ │ │ │ ├── circle_avatar.py │ │ │ │ │ │ │ │ │ │ ├── client_storage.py │ │ │ │ │ │ │ │ │ │ ├── colors.py │ │ │ │ │ │ │ │ │ │ ├── column.py │ │ │ │ │ │ │ │ │ │ ├── connection.py │ │ │ │ │ │ │ │ │ │ ├── constrained_control.py │ │ │ │ │ │ │ │ │ │ ├── container.py │ │ │ │ │ │ │ │ │ │ ├── control.py │ │ │ │ │ │ │ │ │ │ ├── control_event.py │ │ │ │ │ │ │ │ │ │ ├── cupertino_action_sheet.py │ │ │ │ │ │ │ │ │ │ ├── cupertino_action_sheet_action.py │ │ │ │ │ │ │ │ │ │ ├── cupertino_activity_indicator.py │ │ │ │ │ │ │ │ │ │ ├── cupertino_alert_dialog.py │ │ │ │ │ │ │ │ │ │ ├── cupertino_app_bar.py │ │ │ │ │ │ │ │ │ │ ├── cupertino_bottom_sheet.py │ │ │ │ │ │ │ │ │ │ ├── cupertino_button.py │ │ │ │ │ │ │ │ │ │ ├── cupertino_checkbox.py │ │ │ │ │ │ │ │ │ │ ├── cupertino_colors.py │ │ │ │ │ │ │ │ │ │ ├── cupertino_context_menu.py │ │ │ │ │ │ │ │ │ │ ├── cupertino_context_menu_action.py │ │ │ │ │ │ │ │ │ │ ├── cupertino_date_picker.py │ │ │ │ │ │ │ │ │ │ ├── cupertino_dialog_action.py │ │ │ │ │ │ │ │ │ │ ├── cupertino_filled_button.py │ │ │ │ │ │ │ │ │ │ ├── cupertino_icons.py │ │ │ │ │ │ │ │ │ │ ├── cupertino_list_tile.py │ │ │ │ │ │ │ │ │ │ ├── cupertino_navigation_bar.py │ │ │ │ │ │ │ │ │ │ ├── cupertino_picker.py │ │ │ │ │ │ │ │ │ │ ├── cupertino_radio.py │ │ │ │ │ │ │ │ │ │ ├── cupertino_segmented_button.py │ │ │ │ │ │ │ │ │ │ ├── cupertino_slider.py │ │ │ │ │ │ │ │ │ │ ├── cupertino_sliding_segmented_button.py │ │ │ │ │ │ │ │ │ │ ├── cupertino_switch.py │ │ │ │ │ │ │ │ │ │ ├── cupertino_textfield.py │ │ │ │ │ │ │ │ │ │ ├── cupertino_timer_picker.py │ │ │ │ │ │ │ │ │ │ ├── datatable.py │ │ │ │ │ │ │ │ │ │ ├── date_picker.py │ │ │ │ │ │ │ │ │ │ ├── dismissible.py │ │ │ │ │ │ │ │ │ │ ├── divider.py │ │ │ │ │ │ │ │ │ │ ├── drag_target.py │ │ │ │ │ │ │ │ │ │ ├── draggable.py │ │ │ │ │ │ │ │ │ │ ├── dropdown.py │ │ │ │ │ │ │ │ │ │ ├── dropdownm2.py │ │ │ │ │ │ │ │ │ │ ├── elevated_button.py │ │ │ │ │ │ │ │ │ │ ├── embed_json_encoder.py │ │ │ │ │ │ │ │ │ │ ├── event.py │ │ │ │ │ │ │ │ │ │ ├── event_handler.py │ │ │ │ │ │ │ │ │ │ ├── exceptions.py │ │ │ │ │ │ │ │ │ │ ├── expansion_panel.py │ │ │ │ │ │ │ │ │ │ ├── expansion_tile.py │ │ │ │ │ │ │ │ │ │ ├── file_picker.py │ │ │ │ │ │ │ │ │ │ ├── filled_button.py │ │ │ │ │ │ │ │ │ │ ├── filled_tonal_button.py │ │ │ │ │ │ │ │ │ │ ├── flashlight.py │ │ │ │ │ │ │ │ │ │ ├── flet_app.py │ │ │ │ │ │ │ │ │ │ ├── floating_action_button.py │ │ │ │ │ │ │ │ │ │ ├── form_field_control.py │ │ │ │ │ │ │ │ │ │ ├── geolocator.py │ │ │ │ │ │ │ │ │ │ ├── gesture_detector.py │ │ │ │ │ │ │ │ │ │ ├── gradients.py │ │ │ │ │ │ │ │ │ │ ├── grid_view.py │ │ │ │ │ │ │ │ │ │ ├── haptic_feedback.py │ │ │ │ │ │ │ │ │ │ ├── icon.py │ │ │ │ │ │ │ │ │ │ ├── icon_button.py │ │ │ │ │ │ │ │ │ │ ├── icons.py │ │ │ │ │ │ │ │ │ │ ├── image.py │ │ │ │ │ │ │ │ │ │ ├── inline_span.py │ │ │ │ │ │ │ │ │ │ ├── interactive_viewer.py │ │ │ │ │ │ │ │ │ │ ├── list_tile.py │ │ │ │ │ │ │ │ │ │ ├── list_view.py │ │ │ │ │ │ │ │ │ │ ├── local_connection.py │ │ │ │ │ │ │ │ │ │ ├── locks.py │ │ │ │ │ │ │ │ │ │ ├── lottie.py │ │ │ │ │ │ │ │ │ │ ├── map │ │ │ │ │ │ │ │ │ │ │ ├── circle_layer.py │ │ │ │ │ │ │ │ │ │ │ ├── map.py │ │ │ │ │ │ │ │ │ │ │ ├── map_layer.py │ │ │ │ │ │ │ │ │ │ │ ├── marker_layer.py │ │ │ │ │ │ │ │ │ │ │ ├── polygon_layer.py │ │ │ │ │ │ │ │ │ │ │ ├── polyline_layer.py │ │ │ │ │ │ │ │ │ │ │ ├── rich_attribution.py │ │ │ │ │ │ │ │ │ │ │ ├── simple_attribution.py │ │ │ │ │ │ │ │ │ │ │ ├── text_source_attribution.py │ │ │ │ │ │ │ │ │ │ │ └── tile_layer.py │ │ │ │ │ │ │ │ │ │ ├── margin.py │ │ │ │ │ │ │ │ │ │ ├── markdown.py │ │ │ │ │ │ │ │ │ │ ├── matplotlib_chart.py │ │ │ │ │ │ │ │ │ │ ├── menu_bar.py │ │ │ │ │ │ │ │ │ │ ├── menu_item_button.py │ │ │ │ │ │ │ │ │ │ ├── merge_semantics.py │ │ │ │ │ │ │ │ │ │ ├── navigation_bar.py │ │ │ │ │ │ │ │ │ │ ├── navigation_drawer.py │ │ │ │ │ │ │ │ │ │ ├── navigation_rail.py │ │ │ │ │ │ │ │ │ │ ├── outlined_button.py │ │ │ │ │ │ │ │ │ │ ├── padding.py │ │ │ │ │ │ │ │ │ │ ├── page.py │ │ │ │ │ │ │ │ │ │ ├── pagelet.py │ │ │ │ │ │ │ │ │ │ ├── painting.py │ │ │ │ │ │ │ │ │ │ ├── permission_handler.py │ │ │ │ │ │ │ │ │ │ ├── placeholder.py │ │ │ │ │ │ │ │ │ │ ├── plotly_chart.py │ │ │ │ │ │ │ │ │ │ ├── popup_menu_button.py │ │ │ │ │ │ │ │ │ │ ├── progress_bar.py │ │ │ │ │ │ │ │ │ │ ├── progress_ring.py │ │ │ │ │ │ │ │ │ │ ├── protocol.py │ │ │ │ │ │ │ │ │ │ ├── pubsub │ │ │ │ │ │ │ │ │ │ │ ├── pubsub_client.py │ │ │ │ │ │ │ │ │ │ │ └── pubsub_hub.py │ │ │ │ │ │ │ │ │ │ ├── querystring.py │ │ │ │ │ │ │ │ │ │ ├── radio.py │ │ │ │ │ │ │ │ │ │ ├── radio_group.py │ │ │ │ │ │ │ │ │ │ ├── range_slider.py │ │ │ │ │ │ │ │ │ │ ├── ref.py │ │ │ │ │ │ │ │ │ │ ├── reorderable_list_view.py │ │ │ │ │ │ │ │ │ │ ├── responsive_row.py │ │ │ │ │ │ │ │ │ │ ├── rive.py │ │ │ │ │ │ │ │ │ │ ├── row.py │ │ │ │ │ │ │ │ │ │ ├── safe_area.py │ │ │ │ │ │ │ │ │ │ ├── scrollable_control.py │ │ │ │ │ │ │ │ │ │ ├── search_bar.py │ │ │ │ │ │ │ │ │ │ ├── segmented_button.py │ │ │ │ │ │ │ │ │ │ ├── selection_area.py │ │ │ │ │ │ │ │ │ │ ├── semantics.py │ │ │ │ │ │ │ │ │ │ ├── semantics_service.py │ │ │ │ │ │ │ │ │ │ ├── session_storage.py │ │ │ │ │ │ │ │ │ │ ├── shader_mask.py │ │ │ │ │ │ │ │ │ │ ├── shake_detector.py │ │ │ │ │ │ │ │ │ │ ├── size.py │ │ │ │ │ │ │ │ │ │ ├── slider.py │ │ │ │ │ │ │ │ │ │ ├── snack_bar.py │ │ │ │ │ │ │ │ │ │ ├── stack.py │ │ │ │ │ │ │ │ │ │ ├── submenu_button.py │ │ │ │ │ │ │ │ │ │ ├── switch.py │ │ │ │ │ │ │ │ │ │ ├── tabs.py │ │ │ │ │ │ │ │ │ │ ├── template_route.py │ │ │ │ │ │ │ │ │ │ ├── text.py │ │ │ │ │ │ │ │ │ │ ├── text_button.py │ │ │ │ │ │ │ │ │ │ ├── text_span.py │ │ │ │ │ │ │ │ │ │ ├── text_style.py │ │ │ │ │ │ │ │ │ │ ├── textfield.py │ │ │ │ │ │ │ │ │ │ ├── theme.py │ │ │ │ │ │ │ │ │ │ ├── time_picker.py │ │ │ │ │ │ │ │ │ │ ├── tooltip.py │ │ │ │ │ │ │ │ │ │ ├── transform.py │ │ │ │ │ │ │ │ │ │ ├── transparent_pointer.py │ │ │ │ │ │ │ │ │ │ ├── types.py │ │ │ │ │ │ │ │ │ │ ├── vertical_divider.py │ │ │ │ │ │ │ │ │ │ ├── video.py │ │ │ │ │ │ │ │ │ │ ├── view.py │ │ │ │ │ │ │ │ │ │ ├── webview.py │ │ │ │ │ │ │ │ │ │ └── window_drag_area.py │ │ │ │ │ │ │ │ │ ├── fastapi │ │ │ │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ │ │ │ ├── flet_socket_server.py │ │ │ │ │ │ │ │ │ ├── map │ │ │ │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ │ │ │ ├── matplotlib_chart.py │ │ │ │ │ │ │ │ │ ├── plotly_chart.py │ │ │ │ │ │ │ │ │ ├── pyodide_connection.py │ │ │ │ │ │ │ │ │ ├── security │ │ │ │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ │ │ │ ├── utils │ │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ │ ├── browser.py │ │ │ │ │ │ │ │ │ │ ├── classproperty.py │ │ │ │ │ │ │ │ │ │ ├── deprecated.py │ │ │ │ │ │ │ │ │ │ ├── files.py │ │ │ │ │ │ │ │ │ │ ├── hashing.py │ │ │ │ │ │ │ │ │ │ ├── network.py │ │ │ │ │ │ │ │ │ │ ├── once.py │ │ │ │ │ │ │ │ │ │ ├── pip.py │ │ │ │ │ │ │ │ │ │ ├── platform_utils.py │ │ │ │ │ │ │ │ │ │ ├── slugify.py │ │ │ │ │ │ │ │ │ │ ├── strings.py │ │ │ │ │ │ │ │ │ │ └── vector.py │ │ │ │ │ │ │ │ │ └── version.py │ │ │ │ │ │ │ │ ├── flet_notifications │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ └── flet_notifications.py │ │ │ │ │ │ │ │ ├── h11 │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ ├── _abnf.py │ │ │ │ │ │ │ │ │ ├── _connection.py │ │ │ │ │ │ │ │ │ ├── _events.py │ │ │ │ │ │ │ │ │ ├── _headers.py │ │ │ │ │ │ │ │ │ ├── _readers.py │ │ │ │ │ │ │ │ │ ├── _receivebuffer.py │ │ │ │ │ │ │ │ │ ├── _state.py │ │ │ │ │ │ │ │ │ ├── _util.py │ │ │ │ │ │ │ │ │ ├── _version.py │ │ │ │ │ │ │ │ │ ├── _writers.py │ │ │ │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ │ │ │ └── test-file │ │ │ │ │ │ │ │ │ │ ├── helpers.py │ │ │ │ │ │ │ │ │ │ ├── test_against_stdlib_http.py │ │ │ │ │ │ │ │ │ │ ├── test_connection.py │ │ │ │ │ │ │ │ │ │ ├── test_events.py │ │ │ │ │ │ │ │ │ │ ├── test_headers.py │ │ │ │ │ │ │ │ │ │ ├── test_helpers.py │ │ │ │ │ │ │ │ │ │ ├── test_io.py │ │ │ │ │ │ │ │ │ │ ├── test_receivebuffer.py │ │ │ │ │ │ │ │ │ │ ├── test_state.py │ │ │ │ │ │ │ │ │ │ └── test_util.py │ │ │ │ │ │ │ │ ├── httpcore │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ ├── _api.py │ │ │ │ │ │ │ │ │ ├── _async │ │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ │ ├── connection.py │ │ │ │ │ │ │ │ │ │ ├── connection_pool.py │ │ │ │ │ │ │ │ │ │ ├── http11.py │ │ │ │ │ │ │ │ │ │ ├── http2.py │ │ │ │ │ │ │ │ │ │ ├── http_proxy.py │ │ │ │ │ │ │ │ │ │ ├── interfaces.py │ │ │ │ │ │ │ │ │ │ └── socks_proxy.py │ │ │ │ │ │ │ │ │ ├── _backends │ │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ │ ├── anyio.py │ │ │ │ │ │ │ │ │ │ ├── auto.py │ │ │ │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ │ │ │ ├── mock.py │ │ │ │ │ │ │ │ │ │ ├── sync.py │ │ │ │ │ │ │ │ │ │ └── trio.py │ │ │ │ │ │ │ │ │ ├── _exceptions.py │ │ │ │ │ │ │ │ │ ├── _models.py │ │ │ │ │ │ │ │ │ ├── _ssl.py │ │ │ │ │ │ │ │ │ ├── _sync │ │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ │ ├── connection.py │ │ │ │ │ │ │ │ │ │ ├── connection_pool.py │ │ │ │ │ │ │ │ │ │ ├── http11.py │ │ │ │ │ │ │ │ │ │ ├── http2.py │ │ │ │ │ │ │ │ │ │ ├── http_proxy.py │ │ │ │ │ │ │ │ │ │ ├── interfaces.py │ │ │ │ │ │ │ │ │ │ └── socks_proxy.py │ │ │ │ │ │ │ │ │ ├── _synchronization.py │ │ │ │ │ │ │ │ │ ├── _trace.py │ │ │ │ │ │ │ │ │ └── _utils.py │ │ │ │ │ │ │ │ ├── httpx │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ ├── __version__.py │ │ │ │ │ │ │ │ │ ├── _api.py │ │ │ │ │ │ │ │ │ ├── _auth.py │ │ │ │ │ │ │ │ │ ├── _client.py │ │ │ │ │ │ │ │ │ ├── _config.py │ │ │ │ │ │ │ │ │ ├── _content.py │ │ │ │ │ │ │ │ │ ├── _decoders.py │ │ │ │ │ │ │ │ │ ├── _exceptions.py │ │ │ │ │ │ │ │ │ ├── _main.py │ │ │ │ │ │ │ │ │ ├── _models.py │ │ │ │ │ │ │ │ │ ├── _multipart.py │ │ │ │ │ │ │ │ │ ├── _status_codes.py │ │ │ │ │ │ │ │ │ ├── _transports │ │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ │ ├── asgi.py │ │ │ │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ │ │ │ ├── default.py │ │ │ │ │ │ │ │ │ │ ├── mock.py │ │ │ │ │ │ │ │ │ │ └── wsgi.py │ │ │ │ │ │ │ │ │ ├── _types.py │ │ │ │ │ │ │ │ │ ├── _urlparse.py │ │ │ │ │ │ │ │ │ ├── _urls.py │ │ │ │ │ │ │ │ │ └── _utils.py │ │ │ │ │ │ │ │ ├── idna │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ ├── codec.py │ │ │ │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ │ │ │ ├── core.py │ │ │ │ │ │ │ │ │ ├── idnadata.py │ │ │ │ │ │ │ │ │ ├── intranges.py │ │ │ │ │ │ │ │ │ ├── package_data.py │ │ │ │ │ │ │ │ │ └── uts46data.py │ │ │ │ │ │ │ │ ├── oauthlib │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ ├── common.py │ │ │ │ │ │ │ │ │ ├── oauth1 │ │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ │ └── rfc5849 │ │ │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ │ │ ├── endpoints │ │ │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ │ │ ├── access_token.py │ │ │ │ │ │ │ │ │ │ │ ├── authorization.py │ │ │ │ │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ │ │ │ │ ├── pre_configured.py │ │ │ │ │ │ │ │ │ │ │ ├── request_token.py │ │ │ │ │ │ │ │ │ │ │ ├── resource.py │ │ │ │ │ │ │ │ │ │ │ └── signature_only.py │ │ │ │ │ │ │ │ │ │ │ ├── errors.py │ │ │ │ │ │ │ │ │ │ │ ├── parameters.py │ │ │ │ │ │ │ │ │ │ │ ├── request_validator.py │ │ │ │ │ │ │ │ │ │ │ ├── signature.py │ │ │ │ │ │ │ │ │ │ │ └── utils.py │ │ │ │ │ │ │ │ │ ├── oauth2 │ │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ │ ├── rfc6749 │ │ │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ │ │ ├── clients │ │ │ │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ │ │ │ ├── backend_application.py │ │ │ │ │ │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ │ │ │ │ │ ├── legacy_application.py │ │ │ │ │ │ │ │ │ │ │ │ ├── mobile_application.py │ │ │ │ │ │ │ │ │ │ │ │ ├── service_application.py │ │ │ │ │ │ │ │ │ │ │ │ └── web_application.py │ │ │ │ │ │ │ │ │ │ │ ├── endpoints │ │ │ │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ │ │ │ ├── authorization.py │ │ │ │ │ │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ │ │ │ │ │ ├── introspect.py │ │ │ │ │ │ │ │ │ │ │ │ ├── metadata.py │ │ │ │ │ │ │ │ │ │ │ │ ├── pre_configured.py │ │ │ │ │ │ │ │ │ │ │ │ ├── resource.py │ │ │ │ │ │ │ │ │ │ │ │ ├── revocation.py │ │ │ │ │ │ │ │ │ │ │ │ └── token.py │ │ │ │ │ │ │ │ │ │ │ ├── errors.py │ │ │ │ │ │ │ │ │ │ │ ├── grant_types │ │ │ │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ │ │ │ ├── authorization_code.py │ │ │ │ │ │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ │ │ │ │ │ ├── client_credentials.py │ │ │ │ │ │ │ │ │ │ │ │ ├── implicit.py │ │ │ │ │ │ │ │ │ │ │ │ ├── refresh_token.py │ │ │ │ │ │ │ │ │ │ │ │ └── resource_owner_password_credentials.py │ │ │ │ │ │ │ │ │ │ │ ├── parameters.py │ │ │ │ │ │ │ │ │ │ │ ├── request_validator.py │ │ │ │ │ │ │ │ │ │ │ ├── tokens.py │ │ │ │ │ │ │ │ │ │ │ └── utils.py │ │ │ │ │ │ │ │ │ │ └── rfc8628 │ │ │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ │ │ └── clients │ │ │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ │ │ └── device.py │ │ │ │ │ │ │ │ │ ├── openid │ │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ │ └── connect │ │ │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ │ │ └── core │ │ │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ │ │ ├── endpoints │ │ │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ │ │ ├── pre_configured.py │ │ │ │ │ │ │ │ │ │ │ └── userinfo.py │ │ │ │ │ │ │ │ │ │ │ ├── exceptions.py │ │ │ │ │ │ │ │ │ │ │ ├── grant_types │ │ │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ │ │ ├── authorization_code.py │ │ │ │ │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ │ │ │ │ ├── dispatchers.py │ │ │ │ │ │ │ │ │ │ │ ├── hybrid.py │ │ │ │ │ │ │ │ │ │ │ ├── implicit.py │ │ │ │ │ │ │ │ │ │ │ └── refresh_token.py │ │ │ │ │ │ │ │ │ │ │ ├── request_validator.py │ │ │ │ │ │ │ │ │ │ │ └── tokens.py │ │ │ │ │ │ │ │ │ ├── signals.py │ │ │ │ │ │ │ │ │ └── uri_validate.py │ │ │ │ │ │ │ │ ├── repath.py │ │ │ │ │ │ │ │ ├── six.py │ │ │ │ │ │ │ │ ├── sniffio │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ ├── _impl.py │ │ │ │ │ │ │ │ │ ├── _tests │ │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ │ └── test_sniffio.py │ │ │ │ │ │ │ │ │ └── _version.py │ │ │ │ │ │ │ │ └── typing_extensions.py │ │ │ │ │ │ │ │ └── stdlib │ │ │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ │ │ ├── ctypes │ │ │ │ │ │ │ │ └── macholib │ │ │ │ │ │ │ │ │ └── README.ctypes │ │ │ │ │ │ │ │ ├── email │ │ │ │ │ │ │ │ └── architecture.rst │ │ │ │ │ │ │ │ └── lib2to3 │ │ │ │ │ │ │ │ ├── Grammar.txt │ │ │ │ │ │ │ │ ├── Grammar3.12.8.final.0.pickle │ │ │ │ │ │ │ │ ├── PatternGrammar.txt │ │ │ │ │ │ │ │ └── PatternGrammar3.12.8.final.0.pickle │ │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ │ │ └── CodeResources │ │ │ │ │ │ └── serious_python_darwin │ │ │ │ │ └── Current │ │ │ │ └── serious_python_darwin │ │ │ ├── shared_preferences_foundation.framework │ │ │ │ ├── Resources │ │ │ │ ├── Versions │ │ │ │ │ ├── A │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── shared_preferences_foundation_privacy.bundle │ │ │ │ │ │ │ │ └── Contents │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ │ └── PrivacyInfo.xcprivacy │ │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ │ │ └── CodeResources │ │ │ │ │ │ └── shared_preferences_foundation │ │ │ │ │ └── Current │ │ │ │ └── shared_preferences_foundation │ │ │ ├── url_launcher_macos.framework │ │ │ │ ├── Resources │ │ │ │ ├── Versions │ │ │ │ │ ├── A │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── url_launcher_macos_privacy.bundle │ │ │ │ │ │ │ │ └── Contents │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ │ └── PrivacyInfo.xcprivacy │ │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ │ │ └── CodeResources │ │ │ │ │ │ └── url_launcher_macos │ │ │ │ │ └── Current │ │ │ │ └── url_launcher_macos │ │ │ ├── wakelock_plus.framework │ │ │ │ ├── Resources │ │ │ │ ├── Versions │ │ │ │ │ ├── A │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ │ │ └── CodeResources │ │ │ │ │ │ └── wakelock_plus │ │ │ │ │ └── Current │ │ │ │ └── wakelock_plus │ │ │ ├── window_manager.framework │ │ │ │ ├── Resources │ │ │ │ ├── Versions │ │ │ │ │ ├── A │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ │ │ └── CodeResources │ │ │ │ │ │ └── window_manager │ │ │ │ │ └── Current │ │ │ │ └── window_manager │ │ │ └── window_to_front.framework │ │ │ │ ├── Resources │ │ │ │ ├── Versions │ │ │ │ ├── A │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── Info.plist │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ │ └── CodeResources │ │ │ │ │ └── window_to_front │ │ │ │ └── Current │ │ │ │ └── window_to_front │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── flet-notifications-example │ │ │ ├── PkgInfo │ │ │ ├── Resources │ │ │ ├── AppIcon.icns │ │ │ ├── Assets.car │ │ │ └── Base.lproj │ │ │ │ └── MainMenu.nib │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ └── site-packages │ │ ├── .pod │ │ ├── arm64-v8a │ │ ├── anyio │ │ │ ├── __init__.py │ │ │ ├── _backends │ │ │ │ ├── __init__.py │ │ │ │ ├── _asyncio.py │ │ │ │ └── _trio.py │ │ │ ├── _core │ │ │ │ ├── __init__.py │ │ │ │ ├── _asyncio_selector_thread.py │ │ │ │ ├── _eventloop.py │ │ │ │ ├── _exceptions.py │ │ │ │ ├── _fileio.py │ │ │ │ ├── _resources.py │ │ │ │ ├── _signals.py │ │ │ │ ├── _sockets.py │ │ │ │ ├── _streams.py │ │ │ │ ├── _subprocesses.py │ │ │ │ ├── _synchronization.py │ │ │ │ ├── _tasks.py │ │ │ │ ├── _tempfile.py │ │ │ │ ├── _testing.py │ │ │ │ └── _typedattr.py │ │ │ ├── abc │ │ │ │ ├── __init__.py │ │ │ │ ├── _eventloop.py │ │ │ │ ├── _resources.py │ │ │ │ ├── _sockets.py │ │ │ │ ├── _streams.py │ │ │ │ ├── _subprocesses.py │ │ │ │ ├── _tasks.py │ │ │ │ └── _testing.py │ │ │ ├── from_thread.py │ │ │ ├── lowlevel.py │ │ │ ├── pytest_plugin.py │ │ │ ├── streams │ │ │ │ ├── __init__.py │ │ │ │ ├── buffered.py │ │ │ │ ├── file.py │ │ │ │ ├── memory.py │ │ │ │ ├── stapled.py │ │ │ │ ├── text.py │ │ │ │ └── tls.py │ │ │ ├── to_interpreter.py │ │ │ ├── to_process.py │ │ │ └── to_thread.py │ │ ├── certifi │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── cacert.pem │ │ │ └── core.py │ │ ├── flet │ │ │ ├── __init__.py │ │ │ ├── ads │ │ │ │ └── __init__.py │ │ │ ├── app.py │ │ │ ├── auth │ │ │ │ ├── __init__.py │ │ │ │ ├── authorization.py │ │ │ │ ├── group.py │ │ │ │ ├── oauth_provider.py │ │ │ │ ├── oauth_token.py │ │ │ │ ├── providers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── auth0_oauth_provider.py │ │ │ │ │ ├── azure_oauth_provider.py │ │ │ │ │ ├── github_oauth_provider.py │ │ │ │ │ └── google_oauth_provider.py │ │ │ │ └── user.py │ │ │ ├── canvas │ │ │ │ └── __init__.py │ │ │ ├── cli.py │ │ │ ├── core │ │ │ │ ├── adaptive_control.py │ │ │ │ ├── ads │ │ │ │ │ ├── banner.py │ │ │ │ │ ├── base_ad.py │ │ │ │ │ ├── interstitial.py │ │ │ │ │ └── native.py │ │ │ │ ├── alert_dialog.py │ │ │ │ ├── alignment.py │ │ │ │ ├── animated_switcher.py │ │ │ │ ├── animation.py │ │ │ │ ├── app_bar.py │ │ │ │ ├── audio.py │ │ │ │ ├── audio_recorder.py │ │ │ │ ├── auto_complete.py │ │ │ │ ├── autofill_group.py │ │ │ │ ├── badge.py │ │ │ │ ├── banner.py │ │ │ │ ├── blur.py │ │ │ │ ├── border.py │ │ │ │ ├── border_radius.py │ │ │ │ ├── bottom_app_bar.py │ │ │ │ ├── bottom_sheet.py │ │ │ │ ├── box.py │ │ │ │ ├── button.py │ │ │ │ ├── buttons.py │ │ │ │ ├── canvas │ │ │ │ │ ├── arc.py │ │ │ │ │ ├── canvas.py │ │ │ │ │ ├── circle.py │ │ │ │ │ ├── color.py │ │ │ │ │ ├── fill.py │ │ │ │ │ ├── line.py │ │ │ │ │ ├── oval.py │ │ │ │ │ ├── path.py │ │ │ │ │ ├── points.py │ │ │ │ │ ├── rect.py │ │ │ │ │ ├── shadow.py │ │ │ │ │ ├── shape.py │ │ │ │ │ └── text.py │ │ │ │ ├── card.py │ │ │ │ ├── charts │ │ │ │ │ ├── bar_chart.py │ │ │ │ │ ├── bar_chart_group.py │ │ │ │ │ ├── bar_chart_rod.py │ │ │ │ │ ├── bar_chart_rod_stack_item.py │ │ │ │ │ ├── chart_axis.py │ │ │ │ │ ├── chart_axis_label.py │ │ │ │ │ ├── chart_grid_lines.py │ │ │ │ │ ├── chart_point_line.py │ │ │ │ │ ├── chart_point_shape.py │ │ │ │ │ ├── line_chart.py │ │ │ │ │ ├── line_chart_data.py │ │ │ │ │ ├── line_chart_data_point.py │ │ │ │ │ ├── pie_chart.py │ │ │ │ │ └── pie_chart_section.py │ │ │ │ ├── checkbox.py │ │ │ │ ├── chip.py │ │ │ │ ├── circle_avatar.py │ │ │ │ ├── client_storage.py │ │ │ │ ├── colors.py │ │ │ │ ├── column.py │ │ │ │ ├── connection.py │ │ │ │ ├── constrained_control.py │ │ │ │ ├── container.py │ │ │ │ ├── control.py │ │ │ │ ├── control_event.py │ │ │ │ ├── cupertino_action_sheet.py │ │ │ │ ├── cupertino_action_sheet_action.py │ │ │ │ ├── cupertino_activity_indicator.py │ │ │ │ ├── cupertino_alert_dialog.py │ │ │ │ ├── cupertino_app_bar.py │ │ │ │ ├── cupertino_bottom_sheet.py │ │ │ │ ├── cupertino_button.py │ │ │ │ ├── cupertino_checkbox.py │ │ │ │ ├── cupertino_colors.py │ │ │ │ ├── cupertino_context_menu.py │ │ │ │ ├── cupertino_context_menu_action.py │ │ │ │ ├── cupertino_date_picker.py │ │ │ │ ├── cupertino_dialog_action.py │ │ │ │ ├── cupertino_filled_button.py │ │ │ │ ├── cupertino_icons.py │ │ │ │ ├── cupertino_list_tile.py │ │ │ │ ├── cupertino_navigation_bar.py │ │ │ │ ├── cupertino_picker.py │ │ │ │ ├── cupertino_radio.py │ │ │ │ ├── cupertino_segmented_button.py │ │ │ │ ├── cupertino_slider.py │ │ │ │ ├── cupertino_sliding_segmented_button.py │ │ │ │ ├── cupertino_switch.py │ │ │ │ ├── cupertino_textfield.py │ │ │ │ ├── cupertino_timer_picker.py │ │ │ │ ├── datatable.py │ │ │ │ ├── date_picker.py │ │ │ │ ├── dismissible.py │ │ │ │ ├── divider.py │ │ │ │ ├── drag_target.py │ │ │ │ ├── draggable.py │ │ │ │ ├── dropdown.py │ │ │ │ ├── dropdownm2.py │ │ │ │ ├── elevated_button.py │ │ │ │ ├── embed_json_encoder.py │ │ │ │ ├── event.py │ │ │ │ ├── event_handler.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── expansion_panel.py │ │ │ │ ├── expansion_tile.py │ │ │ │ ├── file_picker.py │ │ │ │ ├── filled_button.py │ │ │ │ ├── filled_tonal_button.py │ │ │ │ ├── flashlight.py │ │ │ │ ├── flet_app.py │ │ │ │ ├── floating_action_button.py │ │ │ │ ├── form_field_control.py │ │ │ │ ├── geolocator.py │ │ │ │ ├── gesture_detector.py │ │ │ │ ├── gradients.py │ │ │ │ ├── grid_view.py │ │ │ │ ├── haptic_feedback.py │ │ │ │ ├── icon.py │ │ │ │ ├── icon_button.py │ │ │ │ ├── icons.py │ │ │ │ ├── image.py │ │ │ │ ├── inline_span.py │ │ │ │ ├── interactive_viewer.py │ │ │ │ ├── list_tile.py │ │ │ │ ├── list_view.py │ │ │ │ ├── local_connection.py │ │ │ │ ├── locks.py │ │ │ │ ├── lottie.py │ │ │ │ ├── map │ │ │ │ │ ├── circle_layer.py │ │ │ │ │ ├── map.py │ │ │ │ │ ├── map_layer.py │ │ │ │ │ ├── marker_layer.py │ │ │ │ │ ├── polygon_layer.py │ │ │ │ │ ├── polyline_layer.py │ │ │ │ │ ├── rich_attribution.py │ │ │ │ │ ├── simple_attribution.py │ │ │ │ │ ├── text_source_attribution.py │ │ │ │ │ └── tile_layer.py │ │ │ │ ├── margin.py │ │ │ │ ├── markdown.py │ │ │ │ ├── matplotlib_chart.py │ │ │ │ ├── menu_bar.py │ │ │ │ ├── menu_item_button.py │ │ │ │ ├── merge_semantics.py │ │ │ │ ├── navigation_bar.py │ │ │ │ ├── navigation_drawer.py │ │ │ │ ├── navigation_rail.py │ │ │ │ ├── outlined_button.py │ │ │ │ ├── padding.py │ │ │ │ ├── page.py │ │ │ │ ├── pagelet.py │ │ │ │ ├── painting.py │ │ │ │ ├── permission_handler.py │ │ │ │ ├── placeholder.py │ │ │ │ ├── plotly_chart.py │ │ │ │ ├── popup_menu_button.py │ │ │ │ ├── progress_bar.py │ │ │ │ ├── progress_ring.py │ │ │ │ ├── protocol.py │ │ │ │ ├── pubsub │ │ │ │ │ ├── pubsub_client.py │ │ │ │ │ └── pubsub_hub.py │ │ │ │ ├── querystring.py │ │ │ │ ├── radio.py │ │ │ │ ├── radio_group.py │ │ │ │ ├── range_slider.py │ │ │ │ ├── ref.py │ │ │ │ ├── reorderable_list_view.py │ │ │ │ ├── responsive_row.py │ │ │ │ ├── rive.py │ │ │ │ ├── row.py │ │ │ │ ├── safe_area.py │ │ │ │ ├── scrollable_control.py │ │ │ │ ├── search_bar.py │ │ │ │ ├── segmented_button.py │ │ │ │ ├── selection_area.py │ │ │ │ ├── semantics.py │ │ │ │ ├── semantics_service.py │ │ │ │ ├── session_storage.py │ │ │ │ ├── shader_mask.py │ │ │ │ ├── shake_detector.py │ │ │ │ ├── size.py │ │ │ │ ├── slider.py │ │ │ │ ├── snack_bar.py │ │ │ │ ├── stack.py │ │ │ │ ├── submenu_button.py │ │ │ │ ├── switch.py │ │ │ │ ├── tabs.py │ │ │ │ ├── template_route.py │ │ │ │ ├── text.py │ │ │ │ ├── text_button.py │ │ │ │ ├── text_span.py │ │ │ │ ├── text_style.py │ │ │ │ ├── textfield.py │ │ │ │ ├── theme.py │ │ │ │ ├── time_picker.py │ │ │ │ ├── tooltip.py │ │ │ │ ├── transform.py │ │ │ │ ├── transparent_pointer.py │ │ │ │ ├── types.py │ │ │ │ ├── vertical_divider.py │ │ │ │ ├── video.py │ │ │ │ ├── view.py │ │ │ │ ├── webview.py │ │ │ │ └── window_drag_area.py │ │ │ ├── fastapi │ │ │ │ └── __init__.py │ │ │ ├── flet_socket_server.py │ │ │ ├── map │ │ │ │ └── __init__.py │ │ │ ├── matplotlib_chart.py │ │ │ ├── plotly_chart.py │ │ │ ├── pyodide_connection.py │ │ │ ├── security │ │ │ │ └── __init__.py │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── browser.py │ │ │ │ ├── classproperty.py │ │ │ │ ├── deprecated.py │ │ │ │ ├── files.py │ │ │ │ ├── hashing.py │ │ │ │ ├── network.py │ │ │ │ ├── once.py │ │ │ │ ├── pip.py │ │ │ │ ├── platform_utils.py │ │ │ │ ├── slugify.py │ │ │ │ ├── strings.py │ │ │ │ └── vector.py │ │ │ └── version.py │ │ ├── flet_notifications │ │ │ ├── __init__.py │ │ │ └── flet_notifications.py │ │ ├── h11 │ │ │ ├── __init__.py │ │ │ ├── _abnf.py │ │ │ ├── _connection.py │ │ │ ├── _events.py │ │ │ ├── _headers.py │ │ │ ├── _readers.py │ │ │ ├── _receivebuffer.py │ │ │ ├── _state.py │ │ │ ├── _util.py │ │ │ ├── _version.py │ │ │ ├── _writers.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── data │ │ │ │ └── test-file │ │ │ │ ├── helpers.py │ │ │ │ ├── test_against_stdlib_http.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_events.py │ │ │ │ ├── test_headers.py │ │ │ │ ├── test_helpers.py │ │ │ │ ├── test_io.py │ │ │ │ ├── test_receivebuffer.py │ │ │ │ ├── test_state.py │ │ │ │ └── test_util.py │ │ ├── httpcore │ │ │ ├── __init__.py │ │ │ ├── _api.py │ │ │ ├── _async │ │ │ │ ├── __init__.py │ │ │ │ ├── connection.py │ │ │ │ ├── connection_pool.py │ │ │ │ ├── http11.py │ │ │ │ ├── http2.py │ │ │ │ ├── http_proxy.py │ │ │ │ ├── interfaces.py │ │ │ │ └── socks_proxy.py │ │ │ ├── _backends │ │ │ │ ├── __init__.py │ │ │ │ ├── anyio.py │ │ │ │ ├── auto.py │ │ │ │ ├── base.py │ │ │ │ ├── mock.py │ │ │ │ ├── sync.py │ │ │ │ └── trio.py │ │ │ ├── _exceptions.py │ │ │ ├── _models.py │ │ │ ├── _ssl.py │ │ │ ├── _sync │ │ │ │ ├── __init__.py │ │ │ │ ├── connection.py │ │ │ │ ├── connection_pool.py │ │ │ │ ├── http11.py │ │ │ │ ├── http2.py │ │ │ │ ├── http_proxy.py │ │ │ │ ├── interfaces.py │ │ │ │ └── socks_proxy.py │ │ │ ├── _synchronization.py │ │ │ ├── _trace.py │ │ │ └── _utils.py │ │ ├── httpx │ │ │ ├── __init__.py │ │ │ ├── __version__.py │ │ │ ├── _api.py │ │ │ ├── _auth.py │ │ │ ├── _client.py │ │ │ ├── _config.py │ │ │ ├── _content.py │ │ │ ├── _decoders.py │ │ │ ├── _exceptions.py │ │ │ ├── _main.py │ │ │ ├── _models.py │ │ │ ├── _multipart.py │ │ │ ├── _status_codes.py │ │ │ ├── _transports │ │ │ │ ├── __init__.py │ │ │ │ ├── asgi.py │ │ │ │ ├── base.py │ │ │ │ ├── default.py │ │ │ │ ├── mock.py │ │ │ │ └── wsgi.py │ │ │ ├── _types.py │ │ │ ├── _urlparse.py │ │ │ ├── _urls.py │ │ │ └── _utils.py │ │ ├── idna │ │ │ ├── __init__.py │ │ │ ├── codec.py │ │ │ ├── compat.py │ │ │ ├── core.py │ │ │ ├── idnadata.py │ │ │ ├── intranges.py │ │ │ ├── package_data.py │ │ │ └── uts46data.py │ │ ├── oauthlib │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── oauth1 │ │ │ │ ├── __init__.py │ │ │ │ └── rfc5849 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── endpoints │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── access_token.py │ │ │ │ │ ├── authorization.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── pre_configured.py │ │ │ │ │ ├── request_token.py │ │ │ │ │ ├── resource.py │ │ │ │ │ └── signature_only.py │ │ │ │ │ ├── errors.py │ │ │ │ │ ├── parameters.py │ │ │ │ │ ├── request_validator.py │ │ │ │ │ ├── signature.py │ │ │ │ │ └── utils.py │ │ │ ├── oauth2 │ │ │ │ ├── __init__.py │ │ │ │ ├── rfc6749 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── clients │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── backend_application.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── legacy_application.py │ │ │ │ │ │ ├── mobile_application.py │ │ │ │ │ │ ├── service_application.py │ │ │ │ │ │ └── web_application.py │ │ │ │ │ ├── endpoints │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── authorization.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── introspect.py │ │ │ │ │ │ ├── metadata.py │ │ │ │ │ │ ├── pre_configured.py │ │ │ │ │ │ ├── resource.py │ │ │ │ │ │ ├── revocation.py │ │ │ │ │ │ └── token.py │ │ │ │ │ ├── errors.py │ │ │ │ │ ├── grant_types │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── authorization_code.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── client_credentials.py │ │ │ │ │ │ ├── implicit.py │ │ │ │ │ │ ├── refresh_token.py │ │ │ │ │ │ └── resource_owner_password_credentials.py │ │ │ │ │ ├── parameters.py │ │ │ │ │ ├── request_validator.py │ │ │ │ │ ├── tokens.py │ │ │ │ │ └── utils.py │ │ │ │ └── rfc8628 │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── clients │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── device.py │ │ │ ├── openid │ │ │ │ ├── __init__.py │ │ │ │ └── connect │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── core │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── endpoints │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── pre_configured.py │ │ │ │ │ └── userinfo.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── grant_types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── authorization_code.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── dispatchers.py │ │ │ │ │ ├── hybrid.py │ │ │ │ │ ├── implicit.py │ │ │ │ │ └── refresh_token.py │ │ │ │ │ ├── request_validator.py │ │ │ │ │ └── tokens.py │ │ │ ├── signals.py │ │ │ └── uri_validate.py │ │ ├── repath.py │ │ ├── six.py │ │ ├── sniffio │ │ │ ├── __init__.py │ │ │ ├── _impl.py │ │ │ ├── _tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_sniffio.py │ │ │ └── _version.py │ │ └── typing_extensions.py │ │ ├── armeabi-v7a │ │ ├── anyio │ │ │ ├── __init__.py │ │ │ ├── _backends │ │ │ │ ├── __init__.py │ │ │ │ ├── _asyncio.py │ │ │ │ └── _trio.py │ │ │ ├── _core │ │ │ │ ├── __init__.py │ │ │ │ ├── _asyncio_selector_thread.py │ │ │ │ ├── _eventloop.py │ │ │ │ ├── _exceptions.py │ │ │ │ ├── _fileio.py │ │ │ │ ├── _resources.py │ │ │ │ ├── _signals.py │ │ │ │ ├── _sockets.py │ │ │ │ ├── _streams.py │ │ │ │ ├── _subprocesses.py │ │ │ │ ├── _synchronization.py │ │ │ │ ├── _tasks.py │ │ │ │ ├── _tempfile.py │ │ │ │ ├── _testing.py │ │ │ │ └── _typedattr.py │ │ │ ├── abc │ │ │ │ ├── __init__.py │ │ │ │ ├── _eventloop.py │ │ │ │ ├── _resources.py │ │ │ │ ├── _sockets.py │ │ │ │ ├── _streams.py │ │ │ │ ├── _subprocesses.py │ │ │ │ ├── _tasks.py │ │ │ │ └── _testing.py │ │ │ ├── from_thread.py │ │ │ ├── lowlevel.py │ │ │ ├── pytest_plugin.py │ │ │ ├── streams │ │ │ │ ├── __init__.py │ │ │ │ ├── buffered.py │ │ │ │ ├── file.py │ │ │ │ ├── memory.py │ │ │ │ ├── stapled.py │ │ │ │ ├── text.py │ │ │ │ └── tls.py │ │ │ ├── to_interpreter.py │ │ │ ├── to_process.py │ │ │ └── to_thread.py │ │ ├── certifi │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── cacert.pem │ │ │ └── core.py │ │ ├── flet │ │ │ ├── __init__.py │ │ │ ├── ads │ │ │ │ └── __init__.py │ │ │ ├── app.py │ │ │ ├── auth │ │ │ │ ├── __init__.py │ │ │ │ ├── authorization.py │ │ │ │ ├── group.py │ │ │ │ ├── oauth_provider.py │ │ │ │ ├── oauth_token.py │ │ │ │ ├── providers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── auth0_oauth_provider.py │ │ │ │ │ ├── azure_oauth_provider.py │ │ │ │ │ ├── github_oauth_provider.py │ │ │ │ │ └── google_oauth_provider.py │ │ │ │ └── user.py │ │ │ ├── canvas │ │ │ │ └── __init__.py │ │ │ ├── cli.py │ │ │ ├── core │ │ │ │ ├── adaptive_control.py │ │ │ │ ├── ads │ │ │ │ │ ├── banner.py │ │ │ │ │ ├── base_ad.py │ │ │ │ │ ├── interstitial.py │ │ │ │ │ └── native.py │ │ │ │ ├── alert_dialog.py │ │ │ │ ├── alignment.py │ │ │ │ ├── animated_switcher.py │ │ │ │ ├── animation.py │ │ │ │ ├── app_bar.py │ │ │ │ ├── audio.py │ │ │ │ ├── audio_recorder.py │ │ │ │ ├── auto_complete.py │ │ │ │ ├── autofill_group.py │ │ │ │ ├── badge.py │ │ │ │ ├── banner.py │ │ │ │ ├── blur.py │ │ │ │ ├── border.py │ │ │ │ ├── border_radius.py │ │ │ │ ├── bottom_app_bar.py │ │ │ │ ├── bottom_sheet.py │ │ │ │ ├── box.py │ │ │ │ ├── button.py │ │ │ │ ├── buttons.py │ │ │ │ ├── canvas │ │ │ │ │ ├── arc.py │ │ │ │ │ ├── canvas.py │ │ │ │ │ ├── circle.py │ │ │ │ │ ├── color.py │ │ │ │ │ ├── fill.py │ │ │ │ │ ├── line.py │ │ │ │ │ ├── oval.py │ │ │ │ │ ├── path.py │ │ │ │ │ ├── points.py │ │ │ │ │ ├── rect.py │ │ │ │ │ ├── shadow.py │ │ │ │ │ ├── shape.py │ │ │ │ │ └── text.py │ │ │ │ ├── card.py │ │ │ │ ├── charts │ │ │ │ │ ├── bar_chart.py │ │ │ │ │ ├── bar_chart_group.py │ │ │ │ │ ├── bar_chart_rod.py │ │ │ │ │ ├── bar_chart_rod_stack_item.py │ │ │ │ │ ├── chart_axis.py │ │ │ │ │ ├── chart_axis_label.py │ │ │ │ │ ├── chart_grid_lines.py │ │ │ │ │ ├── chart_point_line.py │ │ │ │ │ ├── chart_point_shape.py │ │ │ │ │ ├── line_chart.py │ │ │ │ │ ├── line_chart_data.py │ │ │ │ │ ├── line_chart_data_point.py │ │ │ │ │ ├── pie_chart.py │ │ │ │ │ └── pie_chart_section.py │ │ │ │ ├── checkbox.py │ │ │ │ ├── chip.py │ │ │ │ ├── circle_avatar.py │ │ │ │ ├── client_storage.py │ │ │ │ ├── colors.py │ │ │ │ ├── column.py │ │ │ │ ├── connection.py │ │ │ │ ├── constrained_control.py │ │ │ │ ├── container.py │ │ │ │ ├── control.py │ │ │ │ ├── control_event.py │ │ │ │ ├── cupertino_action_sheet.py │ │ │ │ ├── cupertino_action_sheet_action.py │ │ │ │ ├── cupertino_activity_indicator.py │ │ │ │ ├── cupertino_alert_dialog.py │ │ │ │ ├── cupertino_app_bar.py │ │ │ │ ├── cupertino_bottom_sheet.py │ │ │ │ ├── cupertino_button.py │ │ │ │ ├── cupertino_checkbox.py │ │ │ │ ├── cupertino_colors.py │ │ │ │ ├── cupertino_context_menu.py │ │ │ │ ├── cupertino_context_menu_action.py │ │ │ │ ├── cupertino_date_picker.py │ │ │ │ ├── cupertino_dialog_action.py │ │ │ │ ├── cupertino_filled_button.py │ │ │ │ ├── cupertino_icons.py │ │ │ │ ├── cupertino_list_tile.py │ │ │ │ ├── cupertino_navigation_bar.py │ │ │ │ ├── cupertino_picker.py │ │ │ │ ├── cupertino_radio.py │ │ │ │ ├── cupertino_segmented_button.py │ │ │ │ ├── cupertino_slider.py │ │ │ │ ├── cupertino_sliding_segmented_button.py │ │ │ │ ├── cupertino_switch.py │ │ │ │ ├── cupertino_textfield.py │ │ │ │ ├── cupertino_timer_picker.py │ │ │ │ ├── datatable.py │ │ │ │ ├── date_picker.py │ │ │ │ ├── dismissible.py │ │ │ │ ├── divider.py │ │ │ │ ├── drag_target.py │ │ │ │ ├── draggable.py │ │ │ │ ├── dropdown.py │ │ │ │ ├── dropdownm2.py │ │ │ │ ├── elevated_button.py │ │ │ │ ├── embed_json_encoder.py │ │ │ │ ├── event.py │ │ │ │ ├── event_handler.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── expansion_panel.py │ │ │ │ ├── expansion_tile.py │ │ │ │ ├── file_picker.py │ │ │ │ ├── filled_button.py │ │ │ │ ├── filled_tonal_button.py │ │ │ │ ├── flashlight.py │ │ │ │ ├── flet_app.py │ │ │ │ ├── floating_action_button.py │ │ │ │ ├── form_field_control.py │ │ │ │ ├── geolocator.py │ │ │ │ ├── gesture_detector.py │ │ │ │ ├── gradients.py │ │ │ │ ├── grid_view.py │ │ │ │ ├── haptic_feedback.py │ │ │ │ ├── icon.py │ │ │ │ ├── icon_button.py │ │ │ │ ├── icons.py │ │ │ │ ├── image.py │ │ │ │ ├── inline_span.py │ │ │ │ ├── interactive_viewer.py │ │ │ │ ├── list_tile.py │ │ │ │ ├── list_view.py │ │ │ │ ├── local_connection.py │ │ │ │ ├── locks.py │ │ │ │ ├── lottie.py │ │ │ │ ├── map │ │ │ │ │ ├── circle_layer.py │ │ │ │ │ ├── map.py │ │ │ │ │ ├── map_layer.py │ │ │ │ │ ├── marker_layer.py │ │ │ │ │ ├── polygon_layer.py │ │ │ │ │ ├── polyline_layer.py │ │ │ │ │ ├── rich_attribution.py │ │ │ │ │ ├── simple_attribution.py │ │ │ │ │ ├── text_source_attribution.py │ │ │ │ │ └── tile_layer.py │ │ │ │ ├── margin.py │ │ │ │ ├── markdown.py │ │ │ │ ├── matplotlib_chart.py │ │ │ │ ├── menu_bar.py │ │ │ │ ├── menu_item_button.py │ │ │ │ ├── merge_semantics.py │ │ │ │ ├── navigation_bar.py │ │ │ │ ├── navigation_drawer.py │ │ │ │ ├── navigation_rail.py │ │ │ │ ├── outlined_button.py │ │ │ │ ├── padding.py │ │ │ │ ├── page.py │ │ │ │ ├── pagelet.py │ │ │ │ ├── painting.py │ │ │ │ ├── permission_handler.py │ │ │ │ ├── placeholder.py │ │ │ │ ├── plotly_chart.py │ │ │ │ ├── popup_menu_button.py │ │ │ │ ├── progress_bar.py │ │ │ │ ├── progress_ring.py │ │ │ │ ├── protocol.py │ │ │ │ ├── pubsub │ │ │ │ │ ├── pubsub_client.py │ │ │ │ │ └── pubsub_hub.py │ │ │ │ ├── querystring.py │ │ │ │ ├── radio.py │ │ │ │ ├── radio_group.py │ │ │ │ ├── range_slider.py │ │ │ │ ├── ref.py │ │ │ │ ├── reorderable_list_view.py │ │ │ │ ├── responsive_row.py │ │ │ │ ├── rive.py │ │ │ │ ├── row.py │ │ │ │ ├── safe_area.py │ │ │ │ ├── scrollable_control.py │ │ │ │ ├── search_bar.py │ │ │ │ ├── segmented_button.py │ │ │ │ ├── selection_area.py │ │ │ │ ├── semantics.py │ │ │ │ ├── semantics_service.py │ │ │ │ ├── session_storage.py │ │ │ │ ├── shader_mask.py │ │ │ │ ├── shake_detector.py │ │ │ │ ├── size.py │ │ │ │ ├── slider.py │ │ │ │ ├── snack_bar.py │ │ │ │ ├── stack.py │ │ │ │ ├── submenu_button.py │ │ │ │ ├── switch.py │ │ │ │ ├── tabs.py │ │ │ │ ├── template_route.py │ │ │ │ ├── text.py │ │ │ │ ├── text_button.py │ │ │ │ ├── text_span.py │ │ │ │ ├── text_style.py │ │ │ │ ├── textfield.py │ │ │ │ ├── theme.py │ │ │ │ ├── time_picker.py │ │ │ │ ├── tooltip.py │ │ │ │ ├── transform.py │ │ │ │ ├── transparent_pointer.py │ │ │ │ ├── types.py │ │ │ │ ├── vertical_divider.py │ │ │ │ ├── video.py │ │ │ │ ├── view.py │ │ │ │ ├── webview.py │ │ │ │ └── window_drag_area.py │ │ │ ├── fastapi │ │ │ │ └── __init__.py │ │ │ ├── flet_socket_server.py │ │ │ ├── map │ │ │ │ └── __init__.py │ │ │ ├── matplotlib_chart.py │ │ │ ├── plotly_chart.py │ │ │ ├── pyodide_connection.py │ │ │ ├── security │ │ │ │ └── __init__.py │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── browser.py │ │ │ │ ├── classproperty.py │ │ │ │ ├── deprecated.py │ │ │ │ ├── files.py │ │ │ │ ├── hashing.py │ │ │ │ ├── network.py │ │ │ │ ├── once.py │ │ │ │ ├── pip.py │ │ │ │ ├── platform_utils.py │ │ │ │ ├── slugify.py │ │ │ │ ├── strings.py │ │ │ │ └── vector.py │ │ │ └── version.py │ │ ├── flet_notifications │ │ │ ├── __init__.py │ │ │ └── flet_notifications.py │ │ ├── h11 │ │ │ ├── __init__.py │ │ │ ├── _abnf.py │ │ │ ├── _connection.py │ │ │ ├── _events.py │ │ │ ├── _headers.py │ │ │ ├── _readers.py │ │ │ ├── _receivebuffer.py │ │ │ ├── _state.py │ │ │ ├── _util.py │ │ │ ├── _version.py │ │ │ ├── _writers.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── data │ │ │ │ └── test-file │ │ │ │ ├── helpers.py │ │ │ │ ├── test_against_stdlib_http.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_events.py │ │ │ │ ├── test_headers.py │ │ │ │ ├── test_helpers.py │ │ │ │ ├── test_io.py │ │ │ │ ├── test_receivebuffer.py │ │ │ │ ├── test_state.py │ │ │ │ └── test_util.py │ │ ├── httpcore │ │ │ ├── __init__.py │ │ │ ├── _api.py │ │ │ ├── _async │ │ │ │ ├── __init__.py │ │ │ │ ├── connection.py │ │ │ │ ├── connection_pool.py │ │ │ │ ├── http11.py │ │ │ │ ├── http2.py │ │ │ │ ├── http_proxy.py │ │ │ │ ├── interfaces.py │ │ │ │ └── socks_proxy.py │ │ │ ├── _backends │ │ │ │ ├── __init__.py │ │ │ │ ├── anyio.py │ │ │ │ ├── auto.py │ │ │ │ ├── base.py │ │ │ │ ├── mock.py │ │ │ │ ├── sync.py │ │ │ │ └── trio.py │ │ │ ├── _exceptions.py │ │ │ ├── _models.py │ │ │ ├── _ssl.py │ │ │ ├── _sync │ │ │ │ ├── __init__.py │ │ │ │ ├── connection.py │ │ │ │ ├── connection_pool.py │ │ │ │ ├── http11.py │ │ │ │ ├── http2.py │ │ │ │ ├── http_proxy.py │ │ │ │ ├── interfaces.py │ │ │ │ └── socks_proxy.py │ │ │ ├── _synchronization.py │ │ │ ├── _trace.py │ │ │ └── _utils.py │ │ ├── httpx │ │ │ ├── __init__.py │ │ │ ├── __version__.py │ │ │ ├── _api.py │ │ │ ├── _auth.py │ │ │ ├── _client.py │ │ │ ├── _config.py │ │ │ ├── _content.py │ │ │ ├── _decoders.py │ │ │ ├── _exceptions.py │ │ │ ├── _main.py │ │ │ ├── _models.py │ │ │ ├── _multipart.py │ │ │ ├── _status_codes.py │ │ │ ├── _transports │ │ │ │ ├── __init__.py │ │ │ │ ├── asgi.py │ │ │ │ ├── base.py │ │ │ │ ├── default.py │ │ │ │ ├── mock.py │ │ │ │ └── wsgi.py │ │ │ ├── _types.py │ │ │ ├── _urlparse.py │ │ │ ├── _urls.py │ │ │ └── _utils.py │ │ ├── idna │ │ │ ├── __init__.py │ │ │ ├── codec.py │ │ │ ├── compat.py │ │ │ ├── core.py │ │ │ ├── idnadata.py │ │ │ ├── intranges.py │ │ │ ├── package_data.py │ │ │ └── uts46data.py │ │ ├── oauthlib │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── oauth1 │ │ │ │ ├── __init__.py │ │ │ │ └── rfc5849 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── endpoints │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── access_token.py │ │ │ │ │ ├── authorization.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── pre_configured.py │ │ │ │ │ ├── request_token.py │ │ │ │ │ ├── resource.py │ │ │ │ │ └── signature_only.py │ │ │ │ │ ├── errors.py │ │ │ │ │ ├── parameters.py │ │ │ │ │ ├── request_validator.py │ │ │ │ │ ├── signature.py │ │ │ │ │ └── utils.py │ │ │ ├── oauth2 │ │ │ │ ├── __init__.py │ │ │ │ ├── rfc6749 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── clients │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── backend_application.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── legacy_application.py │ │ │ │ │ │ ├── mobile_application.py │ │ │ │ │ │ ├── service_application.py │ │ │ │ │ │ └── web_application.py │ │ │ │ │ ├── endpoints │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── authorization.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── introspect.py │ │ │ │ │ │ ├── metadata.py │ │ │ │ │ │ ├── pre_configured.py │ │ │ │ │ │ ├── resource.py │ │ │ │ │ │ ├── revocation.py │ │ │ │ │ │ └── token.py │ │ │ │ │ ├── errors.py │ │ │ │ │ ├── grant_types │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── authorization_code.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── client_credentials.py │ │ │ │ │ │ ├── implicit.py │ │ │ │ │ │ ├── refresh_token.py │ │ │ │ │ │ └── resource_owner_password_credentials.py │ │ │ │ │ ├── parameters.py │ │ │ │ │ ├── request_validator.py │ │ │ │ │ ├── tokens.py │ │ │ │ │ └── utils.py │ │ │ │ └── rfc8628 │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── clients │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── device.py │ │ │ ├── openid │ │ │ │ ├── __init__.py │ │ │ │ └── connect │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── core │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── endpoints │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── pre_configured.py │ │ │ │ │ └── userinfo.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── grant_types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── authorization_code.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── dispatchers.py │ │ │ │ │ ├── hybrid.py │ │ │ │ │ ├── implicit.py │ │ │ │ │ └── refresh_token.py │ │ │ │ │ ├── request_validator.py │ │ │ │ │ └── tokens.py │ │ │ ├── signals.py │ │ │ └── uri_validate.py │ │ ├── repath.py │ │ ├── six.py │ │ ├── sniffio │ │ │ ├── __init__.py │ │ │ ├── _impl.py │ │ │ ├── _tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_sniffio.py │ │ │ └── _version.py │ │ └── typing_extensions.py │ │ ├── x86 │ │ ├── anyio │ │ │ ├── __init__.py │ │ │ ├── _backends │ │ │ │ ├── __init__.py │ │ │ │ ├── _asyncio.py │ │ │ │ └── _trio.py │ │ │ ├── _core │ │ │ │ ├── __init__.py │ │ │ │ ├── _asyncio_selector_thread.py │ │ │ │ ├── _eventloop.py │ │ │ │ ├── _exceptions.py │ │ │ │ ├── _fileio.py │ │ │ │ ├── _resources.py │ │ │ │ ├── _signals.py │ │ │ │ ├── _sockets.py │ │ │ │ ├── _streams.py │ │ │ │ ├── _subprocesses.py │ │ │ │ ├── _synchronization.py │ │ │ │ ├── _tasks.py │ │ │ │ ├── _tempfile.py │ │ │ │ ├── _testing.py │ │ │ │ └── _typedattr.py │ │ │ ├── abc │ │ │ │ ├── __init__.py │ │ │ │ ├── _eventloop.py │ │ │ │ ├── _resources.py │ │ │ │ ├── _sockets.py │ │ │ │ ├── _streams.py │ │ │ │ ├── _subprocesses.py │ │ │ │ ├── _tasks.py │ │ │ │ └── _testing.py │ │ │ ├── from_thread.py │ │ │ ├── lowlevel.py │ │ │ ├── pytest_plugin.py │ │ │ ├── streams │ │ │ │ ├── __init__.py │ │ │ │ ├── buffered.py │ │ │ │ ├── file.py │ │ │ │ ├── memory.py │ │ │ │ ├── stapled.py │ │ │ │ ├── text.py │ │ │ │ └── tls.py │ │ │ ├── to_interpreter.py │ │ │ ├── to_process.py │ │ │ └── to_thread.py │ │ ├── certifi │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── cacert.pem │ │ │ └── core.py │ │ ├── flet │ │ │ ├── __init__.py │ │ │ ├── ads │ │ │ │ └── __init__.py │ │ │ ├── app.py │ │ │ ├── auth │ │ │ │ ├── __init__.py │ │ │ │ ├── authorization.py │ │ │ │ ├── group.py │ │ │ │ ├── oauth_provider.py │ │ │ │ ├── oauth_token.py │ │ │ │ ├── providers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── auth0_oauth_provider.py │ │ │ │ │ ├── azure_oauth_provider.py │ │ │ │ │ ├── github_oauth_provider.py │ │ │ │ │ └── google_oauth_provider.py │ │ │ │ └── user.py │ │ │ ├── canvas │ │ │ │ └── __init__.py │ │ │ ├── cli.py │ │ │ ├── core │ │ │ │ ├── adaptive_control.py │ │ │ │ ├── ads │ │ │ │ │ ├── banner.py │ │ │ │ │ ├── base_ad.py │ │ │ │ │ ├── interstitial.py │ │ │ │ │ └── native.py │ │ │ │ ├── alert_dialog.py │ │ │ │ ├── alignment.py │ │ │ │ ├── animated_switcher.py │ │ │ │ ├── animation.py │ │ │ │ ├── app_bar.py │ │ │ │ ├── audio.py │ │ │ │ ├── audio_recorder.py │ │ │ │ ├── auto_complete.py │ │ │ │ ├── autofill_group.py │ │ │ │ ├── badge.py │ │ │ │ ├── banner.py │ │ │ │ ├── blur.py │ │ │ │ ├── border.py │ │ │ │ ├── border_radius.py │ │ │ │ ├── bottom_app_bar.py │ │ │ │ ├── bottom_sheet.py │ │ │ │ ├── box.py │ │ │ │ ├── button.py │ │ │ │ ├── buttons.py │ │ │ │ ├── canvas │ │ │ │ │ ├── arc.py │ │ │ │ │ ├── canvas.py │ │ │ │ │ ├── circle.py │ │ │ │ │ ├── color.py │ │ │ │ │ ├── fill.py │ │ │ │ │ ├── line.py │ │ │ │ │ ├── oval.py │ │ │ │ │ ├── path.py │ │ │ │ │ ├── points.py │ │ │ │ │ ├── rect.py │ │ │ │ │ ├── shadow.py │ │ │ │ │ ├── shape.py │ │ │ │ │ └── text.py │ │ │ │ ├── card.py │ │ │ │ ├── charts │ │ │ │ │ ├── bar_chart.py │ │ │ │ │ ├── bar_chart_group.py │ │ │ │ │ ├── bar_chart_rod.py │ │ │ │ │ ├── bar_chart_rod_stack_item.py │ │ │ │ │ ├── chart_axis.py │ │ │ │ │ ├── chart_axis_label.py │ │ │ │ │ ├── chart_grid_lines.py │ │ │ │ │ ├── chart_point_line.py │ │ │ │ │ ├── chart_point_shape.py │ │ │ │ │ ├── line_chart.py │ │ │ │ │ ├── line_chart_data.py │ │ │ │ │ ├── line_chart_data_point.py │ │ │ │ │ ├── pie_chart.py │ │ │ │ │ └── pie_chart_section.py │ │ │ │ ├── checkbox.py │ │ │ │ ├── chip.py │ │ │ │ ├── circle_avatar.py │ │ │ │ ├── client_storage.py │ │ │ │ ├── colors.py │ │ │ │ ├── column.py │ │ │ │ ├── connection.py │ │ │ │ ├── constrained_control.py │ │ │ │ ├── container.py │ │ │ │ ├── control.py │ │ │ │ ├── control_event.py │ │ │ │ ├── cupertino_action_sheet.py │ │ │ │ ├── cupertino_action_sheet_action.py │ │ │ │ ├── cupertino_activity_indicator.py │ │ │ │ ├── cupertino_alert_dialog.py │ │ │ │ ├── cupertino_app_bar.py │ │ │ │ ├── cupertino_bottom_sheet.py │ │ │ │ ├── cupertino_button.py │ │ │ │ ├── cupertino_checkbox.py │ │ │ │ ├── cupertino_colors.py │ │ │ │ ├── cupertino_context_menu.py │ │ │ │ ├── cupertino_context_menu_action.py │ │ │ │ ├── cupertino_date_picker.py │ │ │ │ ├── cupertino_dialog_action.py │ │ │ │ ├── cupertino_filled_button.py │ │ │ │ ├── cupertino_icons.py │ │ │ │ ├── cupertino_list_tile.py │ │ │ │ ├── cupertino_navigation_bar.py │ │ │ │ ├── cupertino_picker.py │ │ │ │ ├── cupertino_radio.py │ │ │ │ ├── cupertino_segmented_button.py │ │ │ │ ├── cupertino_slider.py │ │ │ │ ├── cupertino_sliding_segmented_button.py │ │ │ │ ├── cupertino_switch.py │ │ │ │ ├── cupertino_textfield.py │ │ │ │ ├── cupertino_timer_picker.py │ │ │ │ ├── datatable.py │ │ │ │ ├── date_picker.py │ │ │ │ ├── dismissible.py │ │ │ │ ├── divider.py │ │ │ │ ├── drag_target.py │ │ │ │ ├── draggable.py │ │ │ │ ├── dropdown.py │ │ │ │ ├── dropdownm2.py │ │ │ │ ├── elevated_button.py │ │ │ │ ├── embed_json_encoder.py │ │ │ │ ├── event.py │ │ │ │ ├── event_handler.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── expansion_panel.py │ │ │ │ ├── expansion_tile.py │ │ │ │ ├── file_picker.py │ │ │ │ ├── filled_button.py │ │ │ │ ├── filled_tonal_button.py │ │ │ │ ├── flashlight.py │ │ │ │ ├── flet_app.py │ │ │ │ ├── floating_action_button.py │ │ │ │ ├── form_field_control.py │ │ │ │ ├── geolocator.py │ │ │ │ ├── gesture_detector.py │ │ │ │ ├── gradients.py │ │ │ │ ├── grid_view.py │ │ │ │ ├── haptic_feedback.py │ │ │ │ ├── icon.py │ │ │ │ ├── icon_button.py │ │ │ │ ├── icons.py │ │ │ │ ├── image.py │ │ │ │ ├── inline_span.py │ │ │ │ ├── interactive_viewer.py │ │ │ │ ├── list_tile.py │ │ │ │ ├── list_view.py │ │ │ │ ├── local_connection.py │ │ │ │ ├── locks.py │ │ │ │ ├── lottie.py │ │ │ │ ├── map │ │ │ │ │ ├── circle_layer.py │ │ │ │ │ ├── map.py │ │ │ │ │ ├── map_layer.py │ │ │ │ │ ├── marker_layer.py │ │ │ │ │ ├── polygon_layer.py │ │ │ │ │ ├── polyline_layer.py │ │ │ │ │ ├── rich_attribution.py │ │ │ │ │ ├── simple_attribution.py │ │ │ │ │ ├── text_source_attribution.py │ │ │ │ │ └── tile_layer.py │ │ │ │ ├── margin.py │ │ │ │ ├── markdown.py │ │ │ │ ├── matplotlib_chart.py │ │ │ │ ├── menu_bar.py │ │ │ │ ├── menu_item_button.py │ │ │ │ ├── merge_semantics.py │ │ │ │ ├── navigation_bar.py │ │ │ │ ├── navigation_drawer.py │ │ │ │ ├── navigation_rail.py │ │ │ │ ├── outlined_button.py │ │ │ │ ├── padding.py │ │ │ │ ├── page.py │ │ │ │ ├── pagelet.py │ │ │ │ ├── painting.py │ │ │ │ ├── permission_handler.py │ │ │ │ ├── placeholder.py │ │ │ │ ├── plotly_chart.py │ │ │ │ ├── popup_menu_button.py │ │ │ │ ├── progress_bar.py │ │ │ │ ├── progress_ring.py │ │ │ │ ├── protocol.py │ │ │ │ ├── pubsub │ │ │ │ │ ├── pubsub_client.py │ │ │ │ │ └── pubsub_hub.py │ │ │ │ ├── querystring.py │ │ │ │ ├── radio.py │ │ │ │ ├── radio_group.py │ │ │ │ ├── range_slider.py │ │ │ │ ├── ref.py │ │ │ │ ├── reorderable_list_view.py │ │ │ │ ├── responsive_row.py │ │ │ │ ├── rive.py │ │ │ │ ├── row.py │ │ │ │ ├── safe_area.py │ │ │ │ ├── scrollable_control.py │ │ │ │ ├── search_bar.py │ │ │ │ ├── segmented_button.py │ │ │ │ ├── selection_area.py │ │ │ │ ├── semantics.py │ │ │ │ ├── semantics_service.py │ │ │ │ ├── session_storage.py │ │ │ │ ├── shader_mask.py │ │ │ │ ├── shake_detector.py │ │ │ │ ├── size.py │ │ │ │ ├── slider.py │ │ │ │ ├── snack_bar.py │ │ │ │ ├── stack.py │ │ │ │ ├── submenu_button.py │ │ │ │ ├── switch.py │ │ │ │ ├── tabs.py │ │ │ │ ├── template_route.py │ │ │ │ ├── text.py │ │ │ │ ├── text_button.py │ │ │ │ ├── text_span.py │ │ │ │ ├── text_style.py │ │ │ │ ├── textfield.py │ │ │ │ ├── theme.py │ │ │ │ ├── time_picker.py │ │ │ │ ├── tooltip.py │ │ │ │ ├── transform.py │ │ │ │ ├── transparent_pointer.py │ │ │ │ ├── types.py │ │ │ │ ├── vertical_divider.py │ │ │ │ ├── video.py │ │ │ │ ├── view.py │ │ │ │ ├── webview.py │ │ │ │ └── window_drag_area.py │ │ │ ├── fastapi │ │ │ │ └── __init__.py │ │ │ ├── flet_socket_server.py │ │ │ ├── map │ │ │ │ └── __init__.py │ │ │ ├── matplotlib_chart.py │ │ │ ├── plotly_chart.py │ │ │ ├── pyodide_connection.py │ │ │ ├── security │ │ │ │ └── __init__.py │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── browser.py │ │ │ │ ├── classproperty.py │ │ │ │ ├── deprecated.py │ │ │ │ ├── files.py │ │ │ │ ├── hashing.py │ │ │ │ ├── network.py │ │ │ │ ├── once.py │ │ │ │ ├── pip.py │ │ │ │ ├── platform_utils.py │ │ │ │ ├── slugify.py │ │ │ │ ├── strings.py │ │ │ │ └── vector.py │ │ │ └── version.py │ │ ├── flet_notifications │ │ │ ├── __init__.py │ │ │ └── flet_notifications.py │ │ ├── h11 │ │ │ ├── __init__.py │ │ │ ├── _abnf.py │ │ │ ├── _connection.py │ │ │ ├── _events.py │ │ │ ├── _headers.py │ │ │ ├── _readers.py │ │ │ ├── _receivebuffer.py │ │ │ ├── _state.py │ │ │ ├── _util.py │ │ │ ├── _version.py │ │ │ ├── _writers.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── data │ │ │ │ └── test-file │ │ │ │ ├── helpers.py │ │ │ │ ├── test_against_stdlib_http.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_events.py │ │ │ │ ├── test_headers.py │ │ │ │ ├── test_helpers.py │ │ │ │ ├── test_io.py │ │ │ │ ├── test_receivebuffer.py │ │ │ │ ├── test_state.py │ │ │ │ └── test_util.py │ │ ├── httpcore │ │ │ ├── __init__.py │ │ │ ├── _api.py │ │ │ ├── _async │ │ │ │ ├── __init__.py │ │ │ │ ├── connection.py │ │ │ │ ├── connection_pool.py │ │ │ │ ├── http11.py │ │ │ │ ├── http2.py │ │ │ │ ├── http_proxy.py │ │ │ │ ├── interfaces.py │ │ │ │ └── socks_proxy.py │ │ │ ├── _backends │ │ │ │ ├── __init__.py │ │ │ │ ├── anyio.py │ │ │ │ ├── auto.py │ │ │ │ ├── base.py │ │ │ │ ├── mock.py │ │ │ │ ├── sync.py │ │ │ │ └── trio.py │ │ │ ├── _exceptions.py │ │ │ ├── _models.py │ │ │ ├── _ssl.py │ │ │ ├── _sync │ │ │ │ ├── __init__.py │ │ │ │ ├── connection.py │ │ │ │ ├── connection_pool.py │ │ │ │ ├── http11.py │ │ │ │ ├── http2.py │ │ │ │ ├── http_proxy.py │ │ │ │ ├── interfaces.py │ │ │ │ └── socks_proxy.py │ │ │ ├── _synchronization.py │ │ │ ├── _trace.py │ │ │ └── _utils.py │ │ ├── httpx │ │ │ ├── __init__.py │ │ │ ├── __version__.py │ │ │ ├── _api.py │ │ │ ├── _auth.py │ │ │ ├── _client.py │ │ │ ├── _config.py │ │ │ ├── _content.py │ │ │ ├── _decoders.py │ │ │ ├── _exceptions.py │ │ │ ├── _main.py │ │ │ ├── _models.py │ │ │ ├── _multipart.py │ │ │ ├── _status_codes.py │ │ │ ├── _transports │ │ │ │ ├── __init__.py │ │ │ │ ├── asgi.py │ │ │ │ ├── base.py │ │ │ │ ├── default.py │ │ │ │ ├── mock.py │ │ │ │ └── wsgi.py │ │ │ ├── _types.py │ │ │ ├── _urlparse.py │ │ │ ├── _urls.py │ │ │ └── _utils.py │ │ ├── idna │ │ │ ├── __init__.py │ │ │ ├── codec.py │ │ │ ├── compat.py │ │ │ ├── core.py │ │ │ ├── idnadata.py │ │ │ ├── intranges.py │ │ │ ├── package_data.py │ │ │ └── uts46data.py │ │ ├── oauthlib │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── oauth1 │ │ │ │ ├── __init__.py │ │ │ │ └── rfc5849 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── endpoints │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── access_token.py │ │ │ │ │ ├── authorization.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── pre_configured.py │ │ │ │ │ ├── request_token.py │ │ │ │ │ ├── resource.py │ │ │ │ │ └── signature_only.py │ │ │ │ │ ├── errors.py │ │ │ │ │ ├── parameters.py │ │ │ │ │ ├── request_validator.py │ │ │ │ │ ├── signature.py │ │ │ │ │ └── utils.py │ │ │ ├── oauth2 │ │ │ │ ├── __init__.py │ │ │ │ ├── rfc6749 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── clients │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── backend_application.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── legacy_application.py │ │ │ │ │ │ ├── mobile_application.py │ │ │ │ │ │ ├── service_application.py │ │ │ │ │ │ └── web_application.py │ │ │ │ │ ├── endpoints │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── authorization.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── introspect.py │ │ │ │ │ │ ├── metadata.py │ │ │ │ │ │ ├── pre_configured.py │ │ │ │ │ │ ├── resource.py │ │ │ │ │ │ ├── revocation.py │ │ │ │ │ │ └── token.py │ │ │ │ │ ├── errors.py │ │ │ │ │ ├── grant_types │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── authorization_code.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── client_credentials.py │ │ │ │ │ │ ├── implicit.py │ │ │ │ │ │ ├── refresh_token.py │ │ │ │ │ │ └── resource_owner_password_credentials.py │ │ │ │ │ ├── parameters.py │ │ │ │ │ ├── request_validator.py │ │ │ │ │ ├── tokens.py │ │ │ │ │ └── utils.py │ │ │ │ └── rfc8628 │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── clients │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── device.py │ │ │ ├── openid │ │ │ │ ├── __init__.py │ │ │ │ └── connect │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── core │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── endpoints │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── pre_configured.py │ │ │ │ │ └── userinfo.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── grant_types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── authorization_code.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── dispatchers.py │ │ │ │ │ ├── hybrid.py │ │ │ │ │ ├── implicit.py │ │ │ │ │ └── refresh_token.py │ │ │ │ │ ├── request_validator.py │ │ │ │ │ └── tokens.py │ │ │ ├── signals.py │ │ │ └── uri_validate.py │ │ ├── repath.py │ │ ├── six.py │ │ ├── sniffio │ │ │ ├── __init__.py │ │ │ ├── _impl.py │ │ │ ├── _tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_sniffio.py │ │ │ └── _version.py │ │ └── typing_extensions.py │ │ └── x86_64 │ │ ├── anyio │ │ ├── __init__.py │ │ ├── _backends │ │ │ ├── __init__.py │ │ │ ├── _asyncio.py │ │ │ └── _trio.py │ │ ├── _core │ │ │ ├── __init__.py │ │ │ ├── _asyncio_selector_thread.py │ │ │ ├── _eventloop.py │ │ │ ├── _exceptions.py │ │ │ ├── _fileio.py │ │ │ ├── _resources.py │ │ │ ├── _signals.py │ │ │ ├── _sockets.py │ │ │ ├── _streams.py │ │ │ ├── _subprocesses.py │ │ │ ├── _synchronization.py │ │ │ ├── _tasks.py │ │ │ ├── _tempfile.py │ │ │ ├── _testing.py │ │ │ └── _typedattr.py │ │ ├── abc │ │ │ ├── __init__.py │ │ │ ├── _eventloop.py │ │ │ ├── _resources.py │ │ │ ├── _sockets.py │ │ │ ├── _streams.py │ │ │ ├── _subprocesses.py │ │ │ ├── _tasks.py │ │ │ └── _testing.py │ │ ├── from_thread.py │ │ ├── lowlevel.py │ │ ├── pytest_plugin.py │ │ ├── streams │ │ │ ├── __init__.py │ │ │ ├── buffered.py │ │ │ ├── file.py │ │ │ ├── memory.py │ │ │ ├── stapled.py │ │ │ ├── text.py │ │ │ └── tls.py │ │ ├── to_interpreter.py │ │ ├── to_process.py │ │ └── to_thread.py │ │ ├── certifi │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── cacert.pem │ │ └── core.py │ │ ├── flet │ │ ├── __init__.py │ │ ├── ads │ │ │ └── __init__.py │ │ ├── app.py │ │ ├── auth │ │ │ ├── __init__.py │ │ │ ├── authorization.py │ │ │ ├── group.py │ │ │ ├── oauth_provider.py │ │ │ ├── oauth_token.py │ │ │ ├── providers │ │ │ │ ├── __init__.py │ │ │ │ ├── auth0_oauth_provider.py │ │ │ │ ├── azure_oauth_provider.py │ │ │ │ ├── github_oauth_provider.py │ │ │ │ └── google_oauth_provider.py │ │ │ └── user.py │ │ ├── canvas │ │ │ └── __init__.py │ │ ├── cli.py │ │ ├── core │ │ │ ├── adaptive_control.py │ │ │ ├── ads │ │ │ │ ├── banner.py │ │ │ │ ├── base_ad.py │ │ │ │ ├── interstitial.py │ │ │ │ └── native.py │ │ │ ├── alert_dialog.py │ │ │ ├── alignment.py │ │ │ ├── animated_switcher.py │ │ │ ├── animation.py │ │ │ ├── app_bar.py │ │ │ ├── audio.py │ │ │ ├── audio_recorder.py │ │ │ ├── auto_complete.py │ │ │ ├── autofill_group.py │ │ │ ├── badge.py │ │ │ ├── banner.py │ │ │ ├── blur.py │ │ │ ├── border.py │ │ │ ├── border_radius.py │ │ │ ├── bottom_app_bar.py │ │ │ ├── bottom_sheet.py │ │ │ ├── box.py │ │ │ ├── button.py │ │ │ ├── buttons.py │ │ │ ├── canvas │ │ │ │ ├── arc.py │ │ │ │ ├── canvas.py │ │ │ │ ├── circle.py │ │ │ │ ├── color.py │ │ │ │ ├── fill.py │ │ │ │ ├── line.py │ │ │ │ ├── oval.py │ │ │ │ ├── path.py │ │ │ │ ├── points.py │ │ │ │ ├── rect.py │ │ │ │ ├── shadow.py │ │ │ │ ├── shape.py │ │ │ │ └── text.py │ │ │ ├── card.py │ │ │ ├── charts │ │ │ │ ├── bar_chart.py │ │ │ │ ├── bar_chart_group.py │ │ │ │ ├── bar_chart_rod.py │ │ │ │ ├── bar_chart_rod_stack_item.py │ │ │ │ ├── chart_axis.py │ │ │ │ ├── chart_axis_label.py │ │ │ │ ├── chart_grid_lines.py │ │ │ │ ├── chart_point_line.py │ │ │ │ ├── chart_point_shape.py │ │ │ │ ├── line_chart.py │ │ │ │ ├── line_chart_data.py │ │ │ │ ├── line_chart_data_point.py │ │ │ │ ├── pie_chart.py │ │ │ │ └── pie_chart_section.py │ │ │ ├── checkbox.py │ │ │ ├── chip.py │ │ │ ├── circle_avatar.py │ │ │ ├── client_storage.py │ │ │ ├── colors.py │ │ │ ├── column.py │ │ │ ├── connection.py │ │ │ ├── constrained_control.py │ │ │ ├── container.py │ │ │ ├── control.py │ │ │ ├── control_event.py │ │ │ ├── cupertino_action_sheet.py │ │ │ ├── cupertino_action_sheet_action.py │ │ │ ├── cupertino_activity_indicator.py │ │ │ ├── cupertino_alert_dialog.py │ │ │ ├── cupertino_app_bar.py │ │ │ ├── cupertino_bottom_sheet.py │ │ │ ├── cupertino_button.py │ │ │ ├── cupertino_checkbox.py │ │ │ ├── cupertino_colors.py │ │ │ ├── cupertino_context_menu.py │ │ │ ├── cupertino_context_menu_action.py │ │ │ ├── cupertino_date_picker.py │ │ │ ├── cupertino_dialog_action.py │ │ │ ├── cupertino_filled_button.py │ │ │ ├── cupertino_icons.py │ │ │ ├── cupertino_list_tile.py │ │ │ ├── cupertino_navigation_bar.py │ │ │ ├── cupertino_picker.py │ │ │ ├── cupertino_radio.py │ │ │ ├── cupertino_segmented_button.py │ │ │ ├── cupertino_slider.py │ │ │ ├── cupertino_sliding_segmented_button.py │ │ │ ├── cupertino_switch.py │ │ │ ├── cupertino_textfield.py │ │ │ ├── cupertino_timer_picker.py │ │ │ ├── datatable.py │ │ │ ├── date_picker.py │ │ │ ├── dismissible.py │ │ │ ├── divider.py │ │ │ ├── drag_target.py │ │ │ ├── draggable.py │ │ │ ├── dropdown.py │ │ │ ├── dropdownm2.py │ │ │ ├── elevated_button.py │ │ │ ├── embed_json_encoder.py │ │ │ ├── event.py │ │ │ ├── event_handler.py │ │ │ ├── exceptions.py │ │ │ ├── expansion_panel.py │ │ │ ├── expansion_tile.py │ │ │ ├── file_picker.py │ │ │ ├── filled_button.py │ │ │ ├── filled_tonal_button.py │ │ │ ├── flashlight.py │ │ │ ├── flet_app.py │ │ │ ├── floating_action_button.py │ │ │ ├── form_field_control.py │ │ │ ├── geolocator.py │ │ │ ├── gesture_detector.py │ │ │ ├── gradients.py │ │ │ ├── grid_view.py │ │ │ ├── haptic_feedback.py │ │ │ ├── icon.py │ │ │ ├── icon_button.py │ │ │ ├── icons.py │ │ │ ├── image.py │ │ │ ├── inline_span.py │ │ │ ├── interactive_viewer.py │ │ │ ├── list_tile.py │ │ │ ├── list_view.py │ │ │ ├── local_connection.py │ │ │ ├── locks.py │ │ │ ├── lottie.py │ │ │ ├── map │ │ │ │ ├── circle_layer.py │ │ │ │ ├── map.py │ │ │ │ ├── map_layer.py │ │ │ │ ├── marker_layer.py │ │ │ │ ├── polygon_layer.py │ │ │ │ ├── polyline_layer.py │ │ │ │ ├── rich_attribution.py │ │ │ │ ├── simple_attribution.py │ │ │ │ ├── text_source_attribution.py │ │ │ │ └── tile_layer.py │ │ │ ├── margin.py │ │ │ ├── markdown.py │ │ │ ├── matplotlib_chart.py │ │ │ ├── menu_bar.py │ │ │ ├── menu_item_button.py │ │ │ ├── merge_semantics.py │ │ │ ├── navigation_bar.py │ │ │ ├── navigation_drawer.py │ │ │ ├── navigation_rail.py │ │ │ ├── outlined_button.py │ │ │ ├── padding.py │ │ │ ├── page.py │ │ │ ├── pagelet.py │ │ │ ├── painting.py │ │ │ ├── permission_handler.py │ │ │ ├── placeholder.py │ │ │ ├── plotly_chart.py │ │ │ ├── popup_menu_button.py │ │ │ ├── progress_bar.py │ │ │ ├── progress_ring.py │ │ │ ├── protocol.py │ │ │ ├── pubsub │ │ │ │ ├── pubsub_client.py │ │ │ │ └── pubsub_hub.py │ │ │ ├── querystring.py │ │ │ ├── radio.py │ │ │ ├── radio_group.py │ │ │ ├── range_slider.py │ │ │ ├── ref.py │ │ │ ├── reorderable_list_view.py │ │ │ ├── responsive_row.py │ │ │ ├── rive.py │ │ │ ├── row.py │ │ │ ├── safe_area.py │ │ │ ├── scrollable_control.py │ │ │ ├── search_bar.py │ │ │ ├── segmented_button.py │ │ │ ├── selection_area.py │ │ │ ├── semantics.py │ │ │ ├── semantics_service.py │ │ │ ├── session_storage.py │ │ │ ├── shader_mask.py │ │ │ ├── shake_detector.py │ │ │ ├── size.py │ │ │ ├── slider.py │ │ │ ├── snack_bar.py │ │ │ ├── stack.py │ │ │ ├── submenu_button.py │ │ │ ├── switch.py │ │ │ ├── tabs.py │ │ │ ├── template_route.py │ │ │ ├── text.py │ │ │ ├── text_button.py │ │ │ ├── text_span.py │ │ │ ├── text_style.py │ │ │ ├── textfield.py │ │ │ ├── theme.py │ │ │ ├── time_picker.py │ │ │ ├── tooltip.py │ │ │ ├── transform.py │ │ │ ├── transparent_pointer.py │ │ │ ├── types.py │ │ │ ├── vertical_divider.py │ │ │ ├── video.py │ │ │ ├── view.py │ │ │ ├── webview.py │ │ │ └── window_drag_area.py │ │ ├── fastapi │ │ │ └── __init__.py │ │ ├── flet_socket_server.py │ │ ├── map │ │ │ └── __init__.py │ │ ├── matplotlib_chart.py │ │ ├── plotly_chart.py │ │ ├── pyodide_connection.py │ │ ├── security │ │ │ └── __init__.py │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── browser.py │ │ │ ├── classproperty.py │ │ │ ├── deprecated.py │ │ │ ├── files.py │ │ │ ├── hashing.py │ │ │ ├── network.py │ │ │ ├── once.py │ │ │ ├── pip.py │ │ │ ├── platform_utils.py │ │ │ ├── slugify.py │ │ │ ├── strings.py │ │ │ └── vector.py │ │ └── version.py │ │ ├── flet_notifications │ │ ├── __init__.py │ │ └── flet_notifications.py │ │ ├── h11 │ │ ├── __init__.py │ │ ├── _abnf.py │ │ ├── _connection.py │ │ ├── _events.py │ │ ├── _headers.py │ │ ├── _readers.py │ │ ├── _receivebuffer.py │ │ ├── _state.py │ │ ├── _util.py │ │ ├── _version.py │ │ ├── _writers.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ └── test-file │ │ │ ├── helpers.py │ │ │ ├── test_against_stdlib_http.py │ │ │ ├── test_connection.py │ │ │ ├── test_events.py │ │ │ ├── test_headers.py │ │ │ ├── test_helpers.py │ │ │ ├── test_io.py │ │ │ ├── test_receivebuffer.py │ │ │ ├── test_state.py │ │ │ └── test_util.py │ │ ├── httpcore │ │ ├── __init__.py │ │ ├── _api.py │ │ ├── _async │ │ │ ├── __init__.py │ │ │ ├── connection.py │ │ │ ├── connection_pool.py │ │ │ ├── http11.py │ │ │ ├── http2.py │ │ │ ├── http_proxy.py │ │ │ ├── interfaces.py │ │ │ └── socks_proxy.py │ │ ├── _backends │ │ │ ├── __init__.py │ │ │ ├── anyio.py │ │ │ ├── auto.py │ │ │ ├── base.py │ │ │ ├── mock.py │ │ │ ├── sync.py │ │ │ └── trio.py │ │ ├── _exceptions.py │ │ ├── _models.py │ │ ├── _ssl.py │ │ ├── _sync │ │ │ ├── __init__.py │ │ │ ├── connection.py │ │ │ ├── connection_pool.py │ │ │ ├── http11.py │ │ │ ├── http2.py │ │ │ ├── http_proxy.py │ │ │ ├── interfaces.py │ │ │ └── socks_proxy.py │ │ ├── _synchronization.py │ │ ├── _trace.py │ │ └── _utils.py │ │ ├── httpx │ │ ├── __init__.py │ │ ├── __version__.py │ │ ├── _api.py │ │ ├── _auth.py │ │ ├── _client.py │ │ ├── _config.py │ │ ├── _content.py │ │ ├── _decoders.py │ │ ├── _exceptions.py │ │ ├── _main.py │ │ ├── _models.py │ │ ├── _multipart.py │ │ ├── _status_codes.py │ │ ├── _transports │ │ │ ├── __init__.py │ │ │ ├── asgi.py │ │ │ ├── base.py │ │ │ ├── default.py │ │ │ ├── mock.py │ │ │ └── wsgi.py │ │ ├── _types.py │ │ ├── _urlparse.py │ │ ├── _urls.py │ │ └── _utils.py │ │ ├── idna │ │ ├── __init__.py │ │ ├── codec.py │ │ ├── compat.py │ │ ├── core.py │ │ ├── idnadata.py │ │ ├── intranges.py │ │ ├── package_data.py │ │ └── uts46data.py │ │ ├── oauthlib │ │ ├── __init__.py │ │ ├── common.py │ │ ├── oauth1 │ │ │ ├── __init__.py │ │ │ └── rfc5849 │ │ │ │ ├── __init__.py │ │ │ │ ├── endpoints │ │ │ │ ├── __init__.py │ │ │ │ ├── access_token.py │ │ │ │ ├── authorization.py │ │ │ │ ├── base.py │ │ │ │ ├── pre_configured.py │ │ │ │ ├── request_token.py │ │ │ │ ├── resource.py │ │ │ │ └── signature_only.py │ │ │ │ ├── errors.py │ │ │ │ ├── parameters.py │ │ │ │ ├── request_validator.py │ │ │ │ ├── signature.py │ │ │ │ └── utils.py │ │ ├── oauth2 │ │ │ ├── __init__.py │ │ │ ├── rfc6749 │ │ │ │ ├── __init__.py │ │ │ │ ├── clients │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── backend_application.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── legacy_application.py │ │ │ │ │ ├── mobile_application.py │ │ │ │ │ ├── service_application.py │ │ │ │ │ └── web_application.py │ │ │ │ ├── endpoints │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── authorization.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── introspect.py │ │ │ │ │ ├── metadata.py │ │ │ │ │ ├── pre_configured.py │ │ │ │ │ ├── resource.py │ │ │ │ │ ├── revocation.py │ │ │ │ │ └── token.py │ │ │ │ ├── errors.py │ │ │ │ ├── grant_types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── authorization_code.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── client_credentials.py │ │ │ │ │ ├── implicit.py │ │ │ │ │ ├── refresh_token.py │ │ │ │ │ └── resource_owner_password_credentials.py │ │ │ │ ├── parameters.py │ │ │ │ ├── request_validator.py │ │ │ │ ├── tokens.py │ │ │ │ └── utils.py │ │ │ └── rfc8628 │ │ │ │ ├── __init__.py │ │ │ │ └── clients │ │ │ │ ├── __init__.py │ │ │ │ └── device.py │ │ ├── openid │ │ │ ├── __init__.py │ │ │ └── connect │ │ │ │ ├── __init__.py │ │ │ │ └── core │ │ │ │ ├── __init__.py │ │ │ │ ├── endpoints │ │ │ │ ├── __init__.py │ │ │ │ ├── pre_configured.py │ │ │ │ └── userinfo.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── grant_types │ │ │ │ ├── __init__.py │ │ │ │ ├── authorization_code.py │ │ │ │ ├── base.py │ │ │ │ ├── dispatchers.py │ │ │ │ ├── hybrid.py │ │ │ │ ├── implicit.py │ │ │ │ └── refresh_token.py │ │ │ │ ├── request_validator.py │ │ │ │ └── tokens.py │ │ ├── signals.py │ │ └── uri_validate.py │ │ ├── repath.py │ │ ├── six.py │ │ ├── sniffio │ │ ├── __init__.py │ │ ├── _impl.py │ │ ├── _tests │ │ │ ├── __init__.py │ │ │ └── test_sniffio.py │ │ └── _version.py │ │ └── typing_extensions.py │ ├── pyproject.toml │ └── src │ └── main.py ├── pyproject.toml └── src ├── flet_notifications.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt ├── requires.txt └── top_level.txt ├── flet_notifications ├── .gitignore ├── __init__.py └── flet_notifications.py └── flutter └── flet_notifications ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── lib ├── flet_notifications.dart └── src │ ├── create_control.dart │ └── flet_notifications.dart └── pubspec.yaml /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/.DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/README.md -------------------------------------------------------------------------------- /examples/flet_notifications_example/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/.DS_Store -------------------------------------------------------------------------------- /examples/flet_notifications_example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/.gitignore -------------------------------------------------------------------------------- /examples/flet_notifications_example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/README.md -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/.DS_Store -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/.hash/icons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/.hash/icons -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/.hash/package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/.hash/package -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/.hash/splashes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/.hash/splashes -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/.hash/template-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/.hash/template-1 -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/.hash/template-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/.hash/template-2 -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/apk/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/apk/app-release.apk -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/apk/app-release.apk.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/apk/app-release.apk.sha1 -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter-packages/flet_notifications/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.1.0 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter-packages/flet_notifications/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/.gitignore -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/.metadata -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/.vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/.vars -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/README.md -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/analysis_options.yaml -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/android/.gitignore -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/android/app/build.gradle -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/android/build.gradle -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/android/gradle.properties -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/android/settings.gradle -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/app/app.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/app/app.zip -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/app/app.zip.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/app/app.zip.hash -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/images/favicon.png -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/images/icon.png -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/ios/.gitignore -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/ios/Podfile -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/ios/Runner/Info.plist -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/ios/exportOptions.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/ios/exportOptions.plist -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/linux/CMakeLists.txt -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/linux/main.cc -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/linux/my_application.cc -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/linux/my_application.h -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/macos/.gitignore -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/macos/Podfile -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/macos/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/macos/Podfile.lock -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/macos/Runner/Info.plist -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/pubspec.yaml -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/pubspec.yaml.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/pubspec.yaml.orig -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/web/favicon.png -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/web/flutter_bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/web/flutter_bootstrap.js -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/web/icons/Icon-192.png -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/web/icons/Icon-512.png -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/web/index.html -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/web/manifest.json -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/web/python-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/web/python-worker.js -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/web/python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/web/python.js -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/web/splash/img/dark-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/web/splash/img/dark-1x.png -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/web/splash/img/dark-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/web/splash/img/dark-2x.png -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/web/splash/img/dark-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/web/splash/img/dark-3x.png -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/web/splash/img/dark-4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/web/splash/img/dark-4x.png -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/web/splash/img/light-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/web/splash/img/light-1x.png -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/web/splash/img/light-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/web/splash/img/light-2x.png -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/web/splash/img/light-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/web/splash/img/light-3x.png -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/web/splash/img/light-4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/web/splash/img/light-4x.png -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/windows/.gitignore -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/windows/CMakeLists.txt -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/windows/runner/Runner.rc -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/windows/runner/main.cpp -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/windows/runner/resource.h -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/windows/runner/utils.cpp -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/windows/runner/utils.h -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/flutter/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/flutter/windows/runner/win32_window.h -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/App.framework/App: -------------------------------------------------------------------------------- 1 | Versions/Current/App -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/App.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/App.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/FlutterMacOS.framework/FlutterMacOS: -------------------------------------------------------------------------------- 1 | Versions/Current/FlutterMacOS -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/FlutterMacOS.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/FlutterMacOS.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/Python.framework/Python: -------------------------------------------------------------------------------- 1 | Versions/Current/Python -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/Python.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/Python.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | 3.12 -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/device_info_plus.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/device_info_plus.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/device_info_plus.framework/device_info_plus: -------------------------------------------------------------------------------- 1 | Versions/Current/device_info_plus -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/file_picker.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/file_picker.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/file_picker.framework/file_picker: -------------------------------------------------------------------------------- 1 | Versions/Current/file_picker -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/flutter_local_notifications.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/flutter_local_notifications.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/flutter_local_notifications.framework/flutter_local_notifications: -------------------------------------------------------------------------------- 1 | Versions/Current/flutter_local_notifications -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/package_info_plus.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/package_info_plus.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/package_info_plus.framework/package_info_plus: -------------------------------------------------------------------------------- 1 | Versions/Current/package_info_plus -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/path_provider_foundation.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/path_provider_foundation.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/path_provider_foundation.framework/path_provider_foundation: -------------------------------------------------------------------------------- 1 | Versions/Current/path_provider_foundation -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/screen_retriever_macos.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/screen_retriever_macos.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/screen_retriever_macos.framework/screen_retriever_macos: -------------------------------------------------------------------------------- 1 | Versions/Current/screen_retriever_macos -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/serious_python_darwin.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/serious_python_darwin.framework/Versions/A/Resources/python.bundle/Contents/Resources/site-packages/anyio/_backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/serious_python_darwin.framework/Versions/A/Resources/python.bundle/Contents/Resources/site-packages/anyio/_core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/serious_python_darwin.framework/Versions/A/Resources/python.bundle/Contents/Resources/site-packages/anyio/streams/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/serious_python_darwin.framework/Versions/A/Resources/python.bundle/Contents/Resources/site-packages/h11/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/serious_python_darwin.framework/Versions/A/Resources/python.bundle/Contents/Resources/site-packages/httpcore/_backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/serious_python_darwin.framework/Versions/A/Resources/python.bundle/Contents/Resources/site-packages/sniffio/_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/serious_python_darwin.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/serious_python_darwin.framework/serious_python_darwin: -------------------------------------------------------------------------------- 1 | Versions/Current/serious_python_darwin -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/shared_preferences_foundation.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/shared_preferences_foundation.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/shared_preferences_foundation.framework/shared_preferences_foundation: -------------------------------------------------------------------------------- 1 | Versions/Current/shared_preferences_foundation -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/url_launcher_macos.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/url_launcher_macos.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/url_launcher_macos.framework/url_launcher_macos: -------------------------------------------------------------------------------- 1 | Versions/Current/url_launcher_macos -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/wakelock_plus.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/wakelock_plus.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/wakelock_plus.framework/wakelock_plus: -------------------------------------------------------------------------------- 1 | Versions/Current/wakelock_plus -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/window_manager.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/window_manager.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/window_manager.framework/window_manager: -------------------------------------------------------------------------------- 1 | Versions/Current/window_manager -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/window_to_front.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/window_to_front.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/Frameworks/window_to_front.framework/window_to_front: -------------------------------------------------------------------------------- 1 | Versions/Current/window_to_front -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/macos/flet-notifications-example.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/.pod: -------------------------------------------------------------------------------- 1 | /Users/edoardobalducci/.pub-cache/hosted/pub.dev/serious_python_darwin-0.9.2/darwin -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/anyio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/anyio/__init__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/anyio/_backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/anyio/_core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/anyio/abc/_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/anyio/abc/_tasks.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/anyio/lowlevel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/anyio/lowlevel.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/anyio/streams/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/anyio/to_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/anyio/to_process.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/anyio/to_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/anyio/to_thread.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/certifi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/certifi/__init__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/certifi/__main__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/certifi/cacert.pem -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/certifi/core.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/__init__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/app.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/auth/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/auth/group.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/auth/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/auth/user.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/cli.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/audio.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/badge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/badge.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/banner.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/blur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/blur.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/border.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/border.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/box.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/button.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/card.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/chip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/chip.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/colors.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/column.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/event.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/icon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/icon.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/icons.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/image.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/locks.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/lottie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/lottie.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/margin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/margin.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/page.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/radio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/radio.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/ref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/ref.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/rive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/rive.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/row.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/row.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/size.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/slider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/slider.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/stack.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/switch.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/tabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/tabs.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/text.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/theme.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/types.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/video.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/core/view.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/fastapi/__init__.py: -------------------------------------------------------------------------------- 1 | from flet_web.fastapi import * 2 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/utils/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/utils/files.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/utils/once.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/utils/once.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/utils/pip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/utils/pip.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/flet/version.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/h11/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/h11/__init__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/h11/_abnf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/h11/_abnf.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/h11/_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/h11/_connection.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/h11/_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/h11/_events.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/h11/_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/h11/_headers.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/h11/_readers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/h11/_readers.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/h11/_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/h11/_state.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/h11/_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/h11/_util.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/h11/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/h11/_version.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/h11/_writers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/h11/_writers.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/h11/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/httpcore/_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/httpcore/_api.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/httpcore/_backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/httpcore/_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/httpcore/_models.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/httpcore/_ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/httpcore/_ssl.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/httpcore/_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/httpcore/_trace.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/httpcore/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/httpcore/_utils.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/httpx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/httpx/__init__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/httpx/_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/httpx/_api.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/httpx/_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/httpx/_auth.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/httpx/_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/httpx/_client.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/httpx/_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/httpx/_config.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/httpx/_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/httpx/_content.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/httpx/_decoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/httpx/_decoders.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/httpx/_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/httpx/_main.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/httpx/_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/httpx/_models.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/httpx/_multipart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/httpx/_multipart.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/httpx/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/httpx/_types.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/httpx/_urlparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/httpx/_urlparse.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/httpx/_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/httpx/_urls.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/httpx/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/httpx/_utils.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/idna/__init__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/idna/codec.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/idna/compat.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/idna/core.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/idna/idnadata.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/idna/intranges.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = "3.10" 2 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/idna/uts46data.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/oauthlib/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/oauthlib/common.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/oauthlib/openid/connect/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/oauthlib/openid/connect/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/oauthlib/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/oauthlib/signals.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/repath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/repath.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/six.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/sniffio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/sniffio/__init__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/sniffio/_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/sniffio/_impl.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/sniffio/_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/arm64-v8a/sniffio/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/arm64-v8a/sniffio/_version.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/anyio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/anyio/__init__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/anyio/_backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/anyio/_core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/anyio/lowlevel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/anyio/lowlevel.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/anyio/streams/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/certifi/core.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/__init__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/app.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/auth/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/auth/user.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/cli.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/core/blur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/core/blur.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/core/box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/core/box.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/core/card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/core/card.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/core/chip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/core/chip.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/core/icon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/core/icon.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/core/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/core/page.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/core/ref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/core/ref.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/core/rive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/core/rive.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/core/row.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/core/row.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/core/size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/core/size.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/core/tabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/core/tabs.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/core/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/core/text.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/core/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/core/view.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/fastapi/__init__.py: -------------------------------------------------------------------------------- 1 | from flet_web.fastapi import * 2 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/utils/pip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/utils/pip.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/flet/version.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/h11/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/h11/__init__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/h11/_abnf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/h11/_abnf.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/h11/_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/h11/_events.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/h11/_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/h11/_headers.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/h11/_readers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/h11/_readers.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/h11/_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/h11/_state.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/h11/_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/h11/_util.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/h11/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/h11/_version.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/h11/_writers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/h11/_writers.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/h11/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/httpcore/_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/httpcore/_api.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/httpcore/_backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/httpcore/_ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/httpcore/_ssl.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/httpx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/httpx/__init__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/httpx/_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/httpx/_api.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/httpx/_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/httpx/_auth.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/httpx/_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/httpx/_client.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/httpx/_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/httpx/_config.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/httpx/_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/httpx/_content.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/httpx/_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/httpx/_main.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/httpx/_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/httpx/_models.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/httpx/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/httpx/_types.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/httpx/_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/httpx/_urls.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/httpx/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/httpx/_utils.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/idna/__init__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/idna/codec.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/idna/compat.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/idna/core.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/idna/idnadata.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/idna/intranges.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = "3.10" 2 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/idna/uts46data.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/oauthlib/openid/connect/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/oauthlib/openid/connect/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/repath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/repath.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/six.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/sniffio/_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/armeabi-v7a/sniffio/_impl.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/armeabi-v7a/sniffio/_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/anyio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/anyio/__init__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/anyio/_backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/anyio/_backends/_trio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/anyio/_backends/_trio.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/anyio/_core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/anyio/_core/_eventloop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/anyio/_core/_eventloop.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/anyio/_core/_fileio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/anyio/_core/_fileio.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/anyio/_core/_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/anyio/_core/_resources.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/anyio/_core/_signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/anyio/_core/_signals.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/anyio/_core/_sockets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/anyio/_core/_sockets.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/anyio/_core/_streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/anyio/_core/_streams.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/anyio/_core/_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/anyio/_core/_tasks.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/anyio/_core/_tempfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/anyio/_core/_tempfile.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/anyio/_core/_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/anyio/_core/_testing.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/anyio/_core/_typedattr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/anyio/_core/_typedattr.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/anyio/abc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/anyio/abc/__init__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/anyio/abc/_eventloop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/anyio/abc/_eventloop.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/anyio/abc/_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/anyio/abc/_resources.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/anyio/abc/_sockets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/anyio/abc/_sockets.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/anyio/abc/_streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/anyio/abc/_streams.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/anyio/abc/_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/anyio/abc/_tasks.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/anyio/abc/_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/anyio/abc/_testing.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/anyio/from_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/anyio/from_thread.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/anyio/lowlevel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/anyio/lowlevel.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/anyio/pytest_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/anyio/pytest_plugin.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/anyio/streams/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/anyio/streams/buffered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/anyio/streams/buffered.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/anyio/streams/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/anyio/streams/file.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/anyio/streams/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/anyio/streams/memory.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/anyio/streams/stapled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/anyio/streams/stapled.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/anyio/streams/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/anyio/streams/text.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/anyio/streams/tls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/anyio/streams/tls.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/anyio/to_interpreter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/anyio/to_interpreter.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/anyio/to_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/anyio/to_process.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/anyio/to_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/anyio/to_thread.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/certifi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/certifi/__init__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/certifi/__main__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/certifi/cacert.pem -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/certifi/core.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/__init__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/ads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/ads/__init__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/app.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/auth/__init__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/auth/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/auth/group.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/auth/oauth_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/auth/oauth_token.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/auth/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/auth/user.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/canvas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/canvas/__init__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/cli.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/ads/banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/ads/banner.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/ads/base_ad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/ads/base_ad.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/ads/native.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/ads/native.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/alert_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/alert_dialog.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/alignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/alignment.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/animation.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/app_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/app_bar.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/audio.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/badge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/badge.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/banner.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/blur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/blur.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/border.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/border.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/bottom_sheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/bottom_sheet.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/box.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/button.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/buttons.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/canvas/arc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/canvas/arc.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/canvas/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/canvas/color.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/canvas/fill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/canvas/fill.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/canvas/line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/canvas/line.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/canvas/oval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/canvas/oval.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/canvas/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/canvas/path.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/canvas/rect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/canvas/rect.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/canvas/shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/canvas/shape.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/canvas/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/canvas/text.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/card.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/checkbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/checkbox.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/chip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/chip.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/colors.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/column.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/connection.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/container.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/control.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/datatable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/datatable.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/date_picker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/date_picker.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/dismissible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/dismissible.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/divider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/divider.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/drag_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/drag_target.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/draggable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/draggable.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/dropdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/dropdown.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/dropdownm2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/dropdownm2.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/event.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/exceptions.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/file_picker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/file_picker.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/flashlight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/flashlight.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/flet_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/flet_app.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/geolocator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/geolocator.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/gradients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/gradients.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/grid_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/grid_view.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/icon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/icon.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/icon_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/icon_button.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/icons.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/image.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/inline_span.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/inline_span.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/list_tile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/list_tile.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/list_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/list_view.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/locks.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/lottie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/lottie.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/map/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/map/map.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/margin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/margin.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/markdown.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/menu_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/menu_bar.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/padding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/padding.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/page.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/pagelet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/pagelet.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/painting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/painting.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/placeholder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/placeholder.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/plotly_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/plotly_chart.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/progress_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/progress_bar.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/protocol.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/querystring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/querystring.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/radio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/radio.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/radio_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/radio_group.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/range_slider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/range_slider.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/ref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/ref.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/rive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/rive.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/row.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/row.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/safe_area.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/safe_area.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/search_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/search_bar.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/semantics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/semantics.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/shader_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/shader_mask.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/size.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/slider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/slider.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/snack_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/snack_bar.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/stack.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/switch.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/tabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/tabs.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/text.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/text_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/text_button.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/text_span.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/text_span.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/text_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/text_style.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/textfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/textfield.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/theme.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/time_picker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/time_picker.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/tooltip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/tooltip.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/transform.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/types.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/video.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/view.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/core/webview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/core/webview.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/fastapi/__init__.py: -------------------------------------------------------------------------------- 1 | from flet_web.fastapi import * 2 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/map/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/map/__init__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/matplotlib_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/matplotlib_chart.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/plotly_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/plotly_chart.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/security/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/security/__init__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/utils/__init__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/utils/browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/utils/browser.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/utils/deprecated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/utils/deprecated.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/utils/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/utils/files.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/utils/hashing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/utils/hashing.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/utils/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/utils/network.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/utils/once.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/utils/once.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/utils/pip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/utils/pip.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/utils/slugify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/utils/slugify.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/utils/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/utils/strings.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/utils/vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/utils/vector.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/flet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/flet/version.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/h11/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/h11/__init__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/h11/_abnf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/h11/_abnf.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/h11/_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/h11/_connection.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/h11/_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/h11/_events.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/h11/_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/h11/_headers.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/h11/_readers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/h11/_readers.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/h11/_receivebuffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/h11/_receivebuffer.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/h11/_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/h11/_state.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/h11/_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/h11/_util.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/h11/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/h11/_version.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/h11/_writers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/h11/_writers.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/h11/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/h11/tests/data/test-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/h11/tests/data/test-file -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/h11/tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/h11/tests/helpers.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/h11/tests/test_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/h11/tests/test_events.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/h11/tests/test_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/h11/tests/test_headers.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/h11/tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/h11/tests/test_helpers.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/h11/tests/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/h11/tests/test_io.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/h11/tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/h11/tests/test_util.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/httpcore/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/httpcore/__init__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/httpcore/_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/httpcore/_api.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/httpcore/_backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/httpcore/_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/httpcore/_models.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/httpcore/_ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/httpcore/_ssl.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/httpcore/_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/httpcore/_trace.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/httpcore/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/httpcore/_utils.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/httpx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/httpx/__init__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/httpx/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/httpx/__version__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/httpx/_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/httpx/_api.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/httpx/_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/httpx/_auth.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/httpx/_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/httpx/_client.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/httpx/_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/httpx/_config.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/httpx/_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/httpx/_content.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/httpx/_decoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/httpx/_decoders.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/httpx/_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/httpx/_exceptions.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/httpx/_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/httpx/_main.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/httpx/_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/httpx/_models.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/httpx/_multipart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/httpx/_multipart.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/httpx/_status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/httpx/_status_codes.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/httpx/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/httpx/_types.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/httpx/_urlparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/httpx/_urlparse.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/httpx/_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/httpx/_urls.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/httpx/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/httpx/_utils.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/idna/__init__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/idna/codec.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/idna/compat.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/idna/core.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/idna/idnadata.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/idna/intranges.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = "3.10" 2 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/idna/uts46data.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/oauthlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/oauthlib/__init__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/oauthlib/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/oauthlib/common.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/oauthlib/openid/connect/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/oauthlib/openid/connect/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/oauthlib/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/oauthlib/signals.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/repath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/repath.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/six.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/sniffio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/sniffio/__init__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/sniffio/_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/sniffio/_impl.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/sniffio/_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/sniffio/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/sniffio/_version.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86/typing_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86/typing_extensions.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/anyio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/anyio/__init__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/anyio/_backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/anyio/_core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/anyio/abc/_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/anyio/abc/_tasks.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/anyio/lowlevel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/anyio/lowlevel.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/anyio/streams/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/anyio/to_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/anyio/to_process.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/anyio/to_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/anyio/to_thread.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/certifi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/certifi/__init__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/certifi/__main__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/certifi/cacert.pem -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/certifi/core.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/__init__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/app.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/auth/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/auth/group.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/auth/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/auth/user.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/cli.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/core/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/core/audio.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/core/badge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/core/badge.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/core/banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/core/banner.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/core/blur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/core/blur.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/core/border.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/core/border.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/core/box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/core/box.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/core/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/core/button.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/core/card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/core/card.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/core/chip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/core/chip.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/core/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/core/colors.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/core/column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/core/column.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/core/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/core/event.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/core/icon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/core/icon.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/core/icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/core/icons.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/core/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/core/image.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/core/locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/core/locks.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/core/lottie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/core/lottie.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/core/margin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/core/margin.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/core/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/core/page.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/core/radio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/core/radio.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/core/ref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/core/ref.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/core/rive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/core/rive.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/core/row.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/core/row.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/core/size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/core/size.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/core/slider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/core/slider.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/core/stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/core/stack.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/core/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/core/switch.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/core/tabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/core/tabs.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/core/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/core/text.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/core/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/core/theme.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/core/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/core/types.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/core/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/core/video.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/core/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/core/view.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/fastapi/__init__.py: -------------------------------------------------------------------------------- 1 | from flet_web.fastapi import * 2 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/utils/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/utils/files.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/utils/once.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/utils/once.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/utils/pip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/utils/pip.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/flet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/flet/version.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/h11/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/h11/__init__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/h11/_abnf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/h11/_abnf.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/h11/_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/h11/_connection.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/h11/_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/h11/_events.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/h11/_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/h11/_headers.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/h11/_readers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/h11/_readers.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/h11/_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/h11/_state.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/h11/_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/h11/_util.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/h11/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/h11/_version.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/h11/_writers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/h11/_writers.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/h11/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/httpcore/_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/httpcore/_api.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/httpcore/_backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/httpcore/_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/httpcore/_models.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/httpcore/_ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/httpcore/_ssl.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/httpcore/_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/httpcore/_trace.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/httpcore/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/httpcore/_utils.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/httpx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/httpx/__init__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/httpx/_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/httpx/_api.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/httpx/_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/httpx/_auth.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/httpx/_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/httpx/_client.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/httpx/_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/httpx/_config.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/httpx/_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/httpx/_content.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/httpx/_decoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/httpx/_decoders.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/httpx/_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/httpx/_main.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/httpx/_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/httpx/_models.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/httpx/_multipart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/httpx/_multipart.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/httpx/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/httpx/_types.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/httpx/_urlparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/httpx/_urlparse.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/httpx/_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/httpx/_urls.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/httpx/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/httpx/_utils.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/idna/__init__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/idna/codec.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/idna/compat.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/idna/core.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/idna/idnadata.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/idna/intranges.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = "3.10" 2 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/idna/uts46data.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/oauthlib/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/oauthlib/common.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/oauthlib/openid/connect/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/oauthlib/openid/connect/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/oauthlib/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/oauthlib/signals.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/repath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/repath.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/six.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/sniffio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/sniffio/__init__.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/sniffio/_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/sniffio/_impl.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/sniffio/_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/flet_notifications_example/build/site-packages/x86_64/sniffio/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/build/site-packages/x86_64/sniffio/_version.py -------------------------------------------------------------------------------- /examples/flet_notifications_example/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/pyproject.toml -------------------------------------------------------------------------------- /examples/flet_notifications_example/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/examples/flet_notifications_example/src/main.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/flet_notifications.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/src/flet_notifications.egg-info/PKG-INFO -------------------------------------------------------------------------------- /src/flet_notifications.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/src/flet_notifications.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /src/flet_notifications.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/flet_notifications.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | flet>=0.27.5 2 | -------------------------------------------------------------------------------- /src/flet_notifications.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | flet_notifications 2 | flutter 3 | -------------------------------------------------------------------------------- /src/flet_notifications/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/src/flet_notifications/.gitignore -------------------------------------------------------------------------------- /src/flet_notifications/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/src/flet_notifications/__init__.py -------------------------------------------------------------------------------- /src/flet_notifications/flet_notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/src/flet_notifications/flet_notifications.py -------------------------------------------------------------------------------- /src/flutter/flet_notifications/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/src/flutter/flet_notifications/.gitignore -------------------------------------------------------------------------------- /src/flutter/flet_notifications/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.1.0 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /src/flutter/flet_notifications/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /src/flutter/flet_notifications/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/src/flutter/flet_notifications/README.md -------------------------------------------------------------------------------- /src/flutter/flet_notifications/lib/flet_notifications.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/src/flutter/flet_notifications/lib/flet_notifications.dart -------------------------------------------------------------------------------- /src/flutter/flet_notifications/lib/src/create_control.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/src/flutter/flet_notifications/lib/src/create_control.dart -------------------------------------------------------------------------------- /src/flutter/flet_notifications/lib/src/flet_notifications.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/src/flutter/flet_notifications/lib/src/flet_notifications.dart -------------------------------------------------------------------------------- /src/flutter/flet_notifications/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bbalduzz/flet_notifications/HEAD/src/flutter/flet_notifications/pubspec.yaml --------------------------------------------------------------------------------