File tree 3 files changed +11
-11
lines changed
3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 15
15
(def content-container
16
16
{:z-index 1
17
17
:padding-horizontal padding
18
- :padding-top 12 })
18
+ :padding-top 12 })
19
19
20
20
(defn qr-code-size
21
21
[total-width]
Original file line number Diff line number Diff line change 36
36
37
37
(def view
38
38
(quo.theme/with-theme
39
- (schema/instrument #'view-internal component-schema/?schema)))
39
+ (schema/instrument #'view-internal component-schema/?schema)))
Original file line number Diff line number Diff line change 1
1
(ns status-im.contexts.wallet.share-community-channel.view
2
2
(:require
3
- [quo.core :as quo]
4
- [react-native.core :as rn]
5
- [react-native.safe-area :as safe-area]
6
- [status-im.contexts.wallet.share-community-channel.style :as style]
7
- [utils.i18n :as i18n]
8
- [utils.image-server :as image-server]
9
- [utils.re-frame :as rf]))
3
+ [quo.core :as quo]
4
+ [react-native.core :as rn]
5
+ [react-native.safe-area :as safe-area]
6
+ [status-im.contexts.wallet.share-community-channel.style :as style]
7
+ [utils.i18n :as i18n]
8
+ [utils.image-server :as image-server]
9
+ [utils.re-frame :as rf]))
10
10
11
11
(def qr-size 500 )
12
12
15
15
(let [padding-top (:top (safe-area/get-insets ))]
16
16
(fn []
17
17
(let [chat (rf/sub [:chats/current-chat-chat-view ])
18
- mediaserver-port (rf/sub [:mediaserver/port ])
18
+ mediaserver-port (rf/sub [:mediaserver/port ])
19
19
{:keys [url]} (rf/sub [:get-screen-params ])
20
20
qr-media-server-uri (image-server/get-qr-image-uri-for-any-url
21
21
{:url url
22
- :port mediaserver-port
22
+ :port mediaserver-port
23
23
:qr-size qr-size
24
24
:error-level :highest })
25
25
title (i18n/label :t/share-channel )]
You can’t perform that action at this time.
0 commit comments