Swift Rectangleにアスペクト比を設定するサンプル
環境
Swift version 5.2.3 (swift-5.2.3-RELEASE)
Ubuntu 20.04.2 LTS
構文
Rectangle() .aspectRatio(アスペクト比, ...macOS トラックパッドの右クリックを設定する方法
環境
macOS
操作方法
1.メニューバーの「Appleメニュー」をクリックします。
2.「システム設定…」をクリックします。
3.左側の「トラックパッド」をクリックし ...
Swift TextFieldのキーボードにツールバーを追加するサンプル
環境
Swift version 5.2.3 (swift-5.2.3-RELEASE)
Ubuntu 20.04.2 LTS
構文
TextField(xxx) .toolbar { Toolbar ...Flutter Materialを使ってアイコン(icon)の形を指定する方法
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
Material(
shape: CircleBorder(), //引数「shape」に形を指定する ...
Flutter TextFormFieldウェジェッに初期値を設定するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
TextFormFieldの引数「initialValue」を使ってウェジェッに初期値を設定します。
使用 ...
Flutter テキストの下線を破線にするサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
decorationStyle: TextDecorationStyle.dashed,
Textの下線を破線 ...
Swift fontWeight修飾子を使ってText(テキスト)を太字にするサンプル
環境
Swift version 5.2.3 (swift-5.2.3-RELEASE)
Ubuntu 20.04.2 LTS
構文
Text("テキスト").fontWeight(.bold)...
Swift bold修飾子を使ってText(テキスト)を太字にするサンプル
環境
Swift version 5.2.3 (swift-5.2.3-RELEASE)
Ubuntu 20.04.2 LTS
構文
Text(“文字列”)
.bol ...
Flutter decorationStyleでTextの下線を点線にするサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
decorationStyle: TextDecorationStyle.dotted,
Textの下線を点線 ...
Flutter TextFormFieldのテキスト入力中の枠線の色を設定するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
focusedBorder: OutlineInputBorder( borderSide: BorderSide( c ...Flutter TextFormFieldの入力欄とエラーメッセージの間隔を変えるサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
decoration: InputDecoration( errorStyle: TextStyle( height: ...Flutter Containerを使ってアイコンのの形を指定するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
Container(
decoration: BoxDecoration(//Containerの引数「dec ...
Flutter Icons.timerを使ってタイマーのアイコンを表示するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
child: Icon(Icons.timer)
タイマーのアイコンを表示するには、Icons.timerを使 ...
Kotlin removeIf()関数でMapのキーを削除するサンプル
環境
Windows11 pro 64bit
java 19.0.1
kotlin 1.7.20-release-201
構文
map変数名.keys.removeIf { 条件式 }; ...
Kotlin MutableListの要素を降順にソートするサンプル
環境
Windows11 pro 64bit
java 19.0.1
kotlin 1.7.20-release-201
構文
対象のMutableList名.sortDescending( ...
kotlin split関数で文字列を正規表現で分割するサンプル
環境
Windows11 pro 64bit
java 19.0.1
kotlin 1.7.20-release-201
構文
val result =対象の文字列.split(“ ...
Google Chrome ダウンロードした画像やPDFが自動的に開くのを防ぐ方法
環境
Windows 10 Home 64bit
Google Chrome 117.0.5938.134(Official Build) (64 ビット)
操作方法
1.Google Chrome ...
Python Numpy配列を偶数だけにするサンプル
環境
Windows 11 Pro 64bit
Python 3.11
構文
result = arr
Numpy配列(ndarray)を偶数のみにするには、)result = numspr ...