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 'package:flutter/material.dart'; | |
| import 'package:listenos/session.dart'; | |
| class SessionsScreen extends StatelessWidget { | |
| SessionsScreen({Key? key}) : super(key: key); | |
| final session = Session(author: "Ben Butterworth", createdAt: DateTime.now(), id: "flutter-festival", questions: [ | |
| Question(id: "some question", answers: [], createdAt: DateTime.now(), author: "Human being", text: "Some question" | |
| ) |
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
| #!/usr/bin/env bash | |
| # your team id located in the developer portal | |
| TEAMID="replace" | |
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
| 0�P *�H�� | |
| ��P0�P10 + 0�@� *�H�� | |
| ��@��@�<?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>AppIDName</key> | |
| <string>XC com example app</string> | |
| <key>ApplicationIdentifierPrefix</key> | |
| <array> |
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
| Command line invocation: | |
| /Applications/Xcode-beta.app/Contents/Developer/usr/bin/xcodebuild -workspace ./AblyAssetTracking.xcworkspace -scheme AblyAssetTrackingPublisher -showdestinations | |
| User defaults from command line: | |
| IDEPackageSupportUseBuiltinSCM = YES | |
| Resolve Package Graph | |
| Invalid Exclude '/Users/zen/Library/Developer/Xcode/DerivedData/AblyAssetTracking-foyhrasfekgzxgdqmlvrezlukfet/SourcePackages/checkouts/mapbox-maps-ios/Sources/MapboxMaps/Style/README.md': File not found.ignoring declared target(s) 'swift-nio-zlib-support' in the system package | |
| Resolved source packages: | |
| swift-argument-parser: https://github.com/apple/swift-argument-parser.git @ 0.3.2 |
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
| ACTION=install | |
| ADDITIONAL_SDKS= | |
| AD_HOC_CODE_SIGNING_ALLOWED=YES | |
| ALL_OTHER_LDFLAGS=' ' | |
| ALL_OTHER_LIBTOOLFLAGS=' ' | |
| ALTERNATE_GROUP=staff | |
| ALTERNATE_LINKER= | |
| ALTERNATE_MODE=u+w,go-w,a+rX | |
| ALTERNATE_OWNER=username | |
| ALTERNATE_PERMISSIONS_FILES= |
This file has been truncated, but you can view the full file.
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
| python-build: use openssl@1.1 from homebrew | |
| python-build: use readline from homebrew | |
| /var/folders/rq/tslhk4cj60g2tlr0r5twqhf40000gq/T/python-build.20201116192729.9649 ~/Desktop | |
| /var/folders/rq/tslhk4cj60g2tlr0r5twqhf40000gq/T/python-build.20201116192729.9649/Python-3.8.6 /var/folders/rq/tslhk4cj60g2tlr0r5twqhf40000gq/T/python-build.20201116192729.9649 ~/Desktop | |
| python-build: use readline from homebrew | |
| python-build: use zlib from xcode sdk | |
| checking build system type... x86_64-apple-darwin20.1.0 | |
| checking host system type... x86_64-apple-darwin20.1.0 | |
| checking for python3.8... python3.8 | |
| checking for --enable-universalsdk... no |
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
| Valid issue categories: | |
| Correctness | |
| Correctness:Messages | |
| Correctness:Chrome OS | |
| Security | |
| Performance | |
| Usability:Typography | |
| Usability:Icons | |
| Usability | |
| Accessibility |
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
| def shortestCellPath(grid, sr, sc, tr, tc): | |
| """ | |
| @param grid: int[][] | |
| @param sr: int | |
| @param sc: int | |
| @param tr: int | |
| @param tc: int | |
| @return: int | |
| """ |
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 'package:flutter/material.dart'; | |
| class NavigatorPage extends StatefulWidget { | |
| const NavigatorPage({ Key key, this.child }) : super(key: key); | |
| final Widget child; | |
| @override | |
| _NavigatorPageState createState() => _NavigatorPageState(); | |
| } |
