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
// | |
// ObservableEventTransforms.swift | |
// | |
// Created by Daniel Tartaglia on 9/22/18. | |
// Copyright © 2019 Daniel Tartaglia. MIT License. | |
// | |
import RxSwift | |
/** |
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
import List from '@material-ui/core/List'; | |
import ListItem from '@material-ui/core/ListItem'; | |
import ListItemText from '@material-ui/core/ListItemText'; | |
import { createStyles, makeStyles, Theme } from '@material-ui/core/styles'; | |
import { inject, observer } from 'mobx-react'; | |
import React, { useEffect } from 'react'; | |
import { Client } from '../stores/clients/interface'; | |
import { Typography } from '@material-ui/core'; | |
const useStyles = makeStyles((theme: Theme) => |
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
import UIKit | |
import Foundation | |
@IBDesignable class PlaceholderTextView: UITextView, UITextViewDelegate | |
{ | |
private let _placeholderColor: UIColor = UIColor(white: 0.78, alpha: 1) | |
private var _placeholderLabel: UILabel! | |
@IBInspectable var placeholder: String = "" { | |
didSet { |