Hi, I am a beginner with reagent as well as react-native. Sorry if my question is trivial, I would be grateful to be pointed out to resources where to learn about reagent. I am following the React Native docs and I cannot figure out how to use the components in the issue title.
This is how far I got:
(defn flat-list []
[rrn/flat-list
{:data [{:key "Devin"}
{:key "Devn"}
{:key "Den"}
{:key "Jay"}]
:render-item #(<> rn/Text
#js {:style #js {:color "black"
:textAlign "center"}}
(str %))}])
How can I actually display the values of the maps?
Hi, I am a beginner with
reagentas well asreact-native. Sorry if my question is trivial, I would be grateful to be pointed out to resources where to learn aboutreagent. I am following the React Native docs and I cannot figure out how to use the components in the issue title.This is how far I got:
How can I actually display the values of the maps?