-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from vergecurrency/Revamp-send-view
Revamp send view
- Loading branch information
Showing
17 changed files
with
817 additions
and
154 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
VergeiOS/Assets.xcassets/Icons/Checked.imageset/Contents.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"images" : [ | ||
{ | ||
"idiom" : "universal", | ||
"filename" : "icons8-checked.pdf" | ||
} | ||
], | ||
"info" : { | ||
"version" : 1, | ||
"author" : "xcode" | ||
}, | ||
"properties" : { | ||
"template-rendering-intent" : "template", | ||
"preserves-vector-representation" : true | ||
} | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// | ||
// Created by Swen van Zanten on 24-08-18. | ||
// Copyright (c) 2018 Verge Currency. All rights reserved. | ||
// | ||
|
||
import Foundation | ||
|
||
protocol AmountDelegate { | ||
func didChangeAmount(_ amount: NSNumber) | ||
func currentAmount() -> NSNumber | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// | ||
// Created by Swen van Zanten on 24-08-18. | ||
// Copyright (c) 2018 Verge Currency. All rights reserved. | ||
// | ||
|
||
import Foundation | ||
|
||
protocol RecipientDelegate { | ||
func didSelectRecipientAddress(_ address: String) | ||
func selectedRecipientAddress() -> String | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// | ||
// Created by Swen van Zanten on 24-08-18. | ||
// Copyright (c) 2018 Verge Currency. All rights reserved. | ||
// | ||
|
||
import Foundation | ||
|
||
class SendTransaction { | ||
|
||
var amount: NSNumber = 0.0 | ||
var address: String = "" | ||
var memo: String = "" | ||
|
||
} |
Oops, something went wrong.