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
new Container( | |
padding: new EdgeInsets.all(8.0), | |
height: 250.0, | |
child: textExample, | |
) | |
final row = new Row( | |
children: <Widget>[ | |
textExample, | |
textExample, |
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 Stevia | |
final class ContactUsView: UIView { | |
private var container = UIView() | |
@objc func injected() { | |
initialSetup() | |
} |
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
extension ContactUsViewController { | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
self.initializeViews() | |
} | |
} | |
class ContactUsViewController: BaseSearchViewController { | |
@IBOutlet weak var searchBarTextField: UITextField! | |
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
private func stringify(jsonData: Data) -> String { | |
do { | |
let array = try JSONSerialization.jsonObject(with: jsonData, options: []) as? [String: Any] | |
let jsonData2 = try JSONSerialization.data(withJSONObject: array, | |
options: .prettyPrinted) | |
// here "jsonData" is the dictionary encoded in JSON data | |
let jsonString = String(data: jsonData2, encoding: .utf8) ?? "" | |
let result = String(jsonString.filter { !" \n\t\r".contains($0) }) | |
return result | |
} catch { |
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
#run from project root directory. Add dsyms at route directory | |
./Pods/FirebaseCrashlytics/upload-symbols -gsp ./GoogleService-Info.plist -p ios ./dyms1.zip |
OlderNewer