This commit: - Adds a PDF viewer screen to view PDFs within the app instead of opening them on the system browser - Updates the swap provider (ParaSwap) terms and conditions to be displayed within the app - Increases APK size limit to 80 MB Signed-off-by: Mohamed Javid <19339952+smohamedjavid@users.noreply.github.com> Co-authored-by: Siddarth Kumar <siddarthkay@gmail.com>
7 lines
161 B
Clojure
7 lines
161 B
Clojure
(ns react-native.pdf-viewer
|
|
(:require
|
|
["react-native-pdf" :default rn-pdf]
|
|
[reagent.core :as reagent]))
|
|
|
|
(def view (reagent/adapt-react-class rn-pdf))
|