This file contains 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'; | |
void main() => runApp(MyApp()); | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( | |
debugShowCheckedModeBanner: false, | |
theme: ThemeData( |
This file contains 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 zsh | |
# 使い方 | |
# Mac のターミナルを開いて、下記のコマンドを実行する。ただし、Apple ID でログインを済ませておく。 | |
# | |
# Xcode のインストールも済ませておく | |
# xcode-select --install | |
# | |
# sh -c "$(curl -fsSL https://gist.github.com/blendthink/9a06723446ff2d6f9a44fe8285610377/raw)" |
This file contains 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/bash | |
# | |
# 実行方法 | |
# | |
# Mac のターミナルで以下を入力して実行 | |
# sh -c "$(curl -fsSL https://gist.github.com/blendthink/5ca7dd072db6b0ebe5af8189d2cc5aad/raw)" | |
# | |
# 公式のドキュメントは以下 | |
# https://developer.apple.com/documentation/technologies |