-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 7 replies
-
Hi @DevTKSS! The But you can always add the method yourself if you wish by setting it inside of the I have attached a sample app that uses the Before clicking ![]() After clicking ![]() Sample app: UnoApp124.zip As for the |
Beta Was this translation helpful? Give feedback.
-
@kazo0 and one storage topic more: |
Beta Was this translation helpful? Give feedback.
Hi @DevTKSS!
The
.UseStorage()
extension method should be automatically included as part of theCreateDefaultBuilder()
in your App.xaml.cs. You can see this here.But you can always add the method yourself if you wish by setting it inside of the
.Configure(host => host
I have attached a sample app that uses the
Storage
feature and has theIStorage
implementation injected into theMainModel
. We then read file info as part of a button click as can be seen by theLoadStorageData
method in theMainModel
.Before clicking
After clicking
Sample app: UnoApp124.zip
As for the
.AddFileStorage()
and.AddKeyedStorage()
methods, these are internal extension methods that are not accessible from your …