This file contains hidden or 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
Oauth2 Scope: | |
https://www.googleapis.com/auth/googlevoice | |
+https://www.googleapis.com/auth/contacts | |
+https://www.googleapis.com/auth/userinfo.email | |
+https://www.googleapis.com/auth/userinfo.profile | |
+https://www.googleapis.com/auth/googletalk | |
++++ Folder/Label counts | |
POST /rpc?prettyprint=false HTTP/1.1 | |
Host: www.googleapis.com |
This file contains hidden or 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
Adjusting the edge insets screws up the intrinsic size of the button, causing the hit area to be skewed. | |
// UICenteredButton.h | |
// Created by Sean Kovacs on 6/9/15. | |
#import <UIKit/UIKit.h> | |
IB_DESIGNABLE | |
@interface UICenteredButton : UIButton |
This file contains hidden or 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
struct FixedSpacer: View { | |
var length: Length | |
var body: some View { | |
Spacer() | |
.frame(minHeight: 0, maxHeight: length) | |
} | |
init(_ length: Length = 0) { | |
self.length = length | |
} | |
} |