I hereby claim:
- I am marcelosalloum on github.
- I am marcelosalloum (https://keybase.io/marcelosalloum) on keybase.
- I have a public key ASC4PcHz6Lry4QRbeA-I56smQWPO8IDgfvD08Rs8XAUQago
To claim this, I am signing this object:
| package integrationtests | |
| import ( | |
| "fmt" | |
| "testing" | |
| "github.com/stellar/go/clients/horizonclient" | |
| "github.com/stellar/go/keypair" | |
| "github.com/stellar/go/network" | |
| "github.com/stellar/go/txnbuild" |
| import React from "react"; | |
| import styled from "styled-components"; | |
| const QRCodeImage = styled.img<{ size: number }>` | |
| width: ${({ size }) => size}; | |
| height: ${({ size }) => size}; | |
| `; | |
| type Props = { | |
| value: string; |
| ### STAGE 1: Build ### | |
| FROM node:12.10.0-alpine as builder | |
| WORKDIR /app | |
| COPY package.json package-lock.json ./ | |
| COPY public/ public/ | |
| COPY src/ src/ | |
| RUN npm install |
I hereby claim:
To claim this, I am signing this object:
| import SwiftUI | |
| struct ContentView: View, HUD { | |
| var body: some View { | |
| ZStack { | |
| Color.black.edgesIgnoringSafeArea(.all) | |
| VStack(spacing: 100) { | |
| Button(action: { | |
| self.showSuccessHUD(withStatus: "BTN 1 Clicked") | |
| }, label: { |
| import SVProgressHUD | |
| protocol HUD { | |
| func showSuccessHUD(withStatus status: String, delay: TimeInterval) | |
| } | |
| extension HUD where Self: View { | |
| func showSuccessHUD(withStatus status: String, delay: TimeInterval = 2) { | |
| SVProgressHUD.setBackgroundColor(.white) | |
| SVProgressHUD.setForegroundColor(.black) |
| import SVProgressHUD | |
| struct HUD { | |
| static func showSuccessHUD(withStatus status: String, delay: TimeInterval = 2) { | |
| SVProgressHUD.setBackgroundColor(.white) | |
| SVProgressHUD.setForegroundColor(.black) | |
| SVProgressHUD.showSuccess(withStatus: status) | |
| SVProgressHUD.dismiss(withDelay: delay) | |
| } | |
| } |
| import SVProgressHUD | |
| import SwiftUI | |
| struct ContentView: View { | |
| private func showSuccessHUD(withStatus status: String, delay: TimeInterval = 2) { | |
| SVProgressHUD.setBackgroundColor(.white) | |
| SVProgressHUD.setForegroundColor(.black) | |
| SVProgressHUD.showSuccess(withStatus: status) | |
| SVProgressHUD.dismiss(withDelay: delay) | |
| } |
| SVProgressHUD.setBackgroundColor(.white) | |
| SVProgressHUD.setForegroundColor(.black) | |
| SVProgressHUD.showSuccess(withStatus: "BTN 2 Clicked") | |
| SVProgressHUD.dismiss(withDelay: 2) |
| import SVProgressHUD | |
| import SwiftUI | |
| struct ContentView: View, HUD { | |
| var body: some View { | |
| ZStack { | |
| Color.black.edgesIgnoringSafeArea(.all) | |
| VStack(spacing: 100) { | |
| Button(action: { | |
| SVProgressHUD.setBackgroundColor(.white) |