Creating PowerApps Screen to view the latest news. This is continuation of previous article . Please have look into it if you have missed my previous article. Step 1 :- Once you get the interface like below. Then Set the Next Arrow of Gallery 2 to the below code. Set(desc,ThisItem.description); // Stores the description details in variable Set(title,ThisItem.title); Set(url,ThisItem.url); Set(urlimg,ThisItem.urlToImage); ...
Creating PowerApps Screen to view the latest news. This is continuation of Previous Article . Please have look into it if you missed my previous article. Step 1 :- Login to the PowerApps -> Create an app from Blank using Phone Layout.Add Header and Footer using labels -> Add a Refresh Icon from Icons menu. Set the Refresh Icon OnSelect property to this code. ClearCollect(test12,'Flowname'.Run()); -- test12 is collection name. --Once user press Refresh icon internally it calls the Flow , get the data from Flow in JSON format and stores the data in collection . **You can either write this formula in OnSelect property/ App OnStart property.** Step 2 :- Add a Blank Vertical Gallery -> Inside that add another Gallery, choose the layout as Image,Title,Subtitle. Reason for adding...