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
// | |
// Created by Paul Colton on 6/24/21. | |
// | |
import SwiftUI | |
@main | |
struct DismissApp: App { | |
var body: some Scene { | |
WindowGroup { |
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
// ObserveOnly | |
// | |
// Created by Paul Colton on 5/19/21. | |
// | |
/** | |
Given a model publisher, define the state and scoped state that you want to observe. | |
// Example usage: Given a data model... |
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
#import <UIKit/UIKit.h> | |
@interface UIView (PixatePlaceholder) | |
@property (nonatomic, copy) NSString *styleId; | |
@property (nonatomic, copy) NSString *styleClass; | |
@property (nonatomic, copy) NSString *styleCSS; | |
@property (nonatomic) int styleMode; | |
@end |
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
navigation-bar { | |
color: blue; | |
background-color: lightblue; | |
} | |
navigation-bar title { | |
color: darkblue; | |
} | |
navigation-bar bar-button { |
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
#slider thumb { | |
background-image : linear-gradient(#808487, #cbd1d5); | |
background-size : 16px 16px; | |
border-radius : 8px; | |
} |
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
.myLeftNavButtons { | |
top : 6; | |
size : 115 31; | |
shape : arrow-button-left; | |
content-edge-inset : 0 0 0 6; | |
font-weight : regular; | |
font-size : 12px; | |
color : #ffffff; | |
border-radius : 3px; |
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
class AppDelegate | |
def application(application, didFinishLaunchingWithOptions:launchOptions) | |
PixateFreestyle.initializePixateFreestyle | |
@window = UIWindow.alloc.initWithFrame(UIScreen.mainScreen.bounds) | |
@window.rootViewController = UIViewController.alloc.init | |
@window.styleMode = PXStylingNormal | |
@button = UIButton.buttonWithType UIButtonTypeSystem |