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 async makeRequest<T>( | |
url: string, | |
method: Method, | |
params: {}, | |
headers?: {}, | |
): Promise<T> { | |
const options: RequestInit = { | |
method, | |
headers: { | |
"Content-Type": "application/json", |
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
#!/bin/sh | |
# Если ошибка аналайзера, то выводим полную информацию об ошибке и exit 1 | |
# Если форматирование упало с ошибкой, то выводим полную информацию об ошибке и exit 1 | |
# Если удалось отформатировать (файл изменился), то выводим полную информацию с сообщением "Закомить отформатированные даннные" и exit 1 | |
# Если ничего не отформатировалось, то exit 0 и успешный коммит | |
function analyze() { | |
if flutter analyze; then | |
echo "GOOD!" |
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
https://ios.gadgethacks.com/news/always-updated-list-ios-app-url-scheme-names-0184033/ | |
URL Schemes | |
Apple | |
Apple Music — music://geo.itunes.apple.com/us/albums/<albumID> | |
– music://geo.itunes.apple.com/us/artists/<artistID> | |
Apple News — applenews:// |