chrome://discards/- manage open tabs
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 Foundation | |
| let charToPrintName = "A" | |
| let unicodeName = String(charToPrintName).applyingTransform( | |
| StringTransform(rawValue: "Any-Name"), | |
| reverse: false | |
| )! // Forced unwrapping is legit here because it always succeeds. | |
| print(unicodeName) |
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
| flutter --test-randomize-ordering-seed=random |
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
| *.g.dart -diff | |
| *.freezed.dart -diff |
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
| VERSION = 0.1.0 | |
| BUILD = 1 | |
| flutter = (fvm flutter || flutter) | |
| .PHONY: clean test generate-code watch-code build-android distribute-android | |
| clean: | |
| @flutter clean | |
| @flutter packages get |