skip to Main Content

Flutter – Drop down Menu Data set from api

I am working on e commerce application in that app I want to set dropdown data from api. I am fresher in flutter so I need to help Dropdown Code DropdownButton<String>( value: _selectedOption, items:_options.map<DropdownMenuItem<String>>( (String value) { return DropdownMenuItem<String>( value:…

VIEW QUESTION

Android Studio – Saving a file into another app's private directory

I am using this code to download the file and I want to save the file into the another app's private data directory how I can do that `private void initiateFileDownload(String fileUrl) { DownloadManager.Request request = new DownloadManager.Request(Uri.parse(fileUrl)); request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED); request.setTitle("File…

VIEW QUESTION
Back To Top
Search