skip to Main Content

return multiple values from dropdown in flutter

I have this custom dropDown button and I want to get two values when I select one value from the list. Here is the custom dropdown button Widget customJsonDropDown(List? jsonList, String? value, void onChange(val)) { return Container( decoration: BoxDecoration( borderRadius:…

VIEW QUESTION

Find entry in JSON (Kraken.com uncommon JSON format) – PHP

I need to find if a string exists in JSON Kraken.com retrieved file: I get it this way: $sURL = "https://api.kraken.com/0/public/OHLC?pair=ETHAED&interval=5&since=". strtotime("-1 day"); $ch = curl_init(); $config['useragent'] = 'Mozilla/5.0 (Windows NT 6.2; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0'; curl_setopt($ch, CURLOPT_USERAGENT, $config['useragent']); curl_setopt($ch,…

VIEW QUESTION
Back To Top
Search