Flutter Textで表示しきれない文字の表示方法を設定するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
Textで表示しきれない文字の表示方法を設定するには、引数「overflow」を使います。
使用例
Flutter Textの取り消し線を波線にするサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
decorationStyle: TextDecorationStyle.wavy,
Textの取り消し線を波 ...
Flutter FloatingActionButtonを横に複数並べるサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
FloatingActionButtonを横に複数並べるには、Rowウェジェットを使います。
作成方法 ...
Flutter FloatingActionButtonの枠線の太さを変えるサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
shape: CircleBorder(
side: BorderSide(xxx
FloatingA ...
Swift リストの背景色を透明にするサンプル
環境
Swift version 5.2.3 (swift-5.2.3-RELEASE)
Ubuntu 20.04.2 LTS
構文
Listの背景色を透明にするには、UITablViewとlist ...
Swift「disabled」でButtonを無効にするサンプル
環境
Swift version 5.2.3 (swift-5.2.3-RELEASE)
Ubuntu 20.04.2 LTS
構文
func disable ( _ disabled : Bool ...
Swift clipShape修飾子を使ってTextの背景色を角丸にするサンプル
環境
Swift version 5.2.3 (swift-5.2.3-RELEASE)
Ubuntu 20.04.2 LTS
構文
Text("xxx") .background( color.cl ...Swift TextEditorのキーボードの種類を設定するサンプル
環境
Swift version 5.2.3 (swift-5.2.3-RELEASE)
Ubuntu 20.04.2 LTS
構文
TextEditor(text: $text).keyboardT ...Swift frame修飾子を使ってTextEditorの横幅を変えるサンプル
環境
Swift version 5.2.3 (swift-5.2.3-RELEASE)
Ubuntu 20.04.2 LTS
構文
TextEditor(text: $editText)
Swift underline修飾子を使ってTextに下線をつけるサンプル
環境
Swift version 5.2.3 (swift-5.2.3-RELEASE)
Ubuntu 20.04.2 LTS
構文
Text(“xxx”)
.und ...
Swift cornerRadius修飾子を使ってTextの背景色を角丸にする方法
環境
Swift version 5.2.3 (swift-5.2.3-RELEASE)
Ubuntu 20.04.2 LTS
構文
Text(“xxx”)
.bac ...
Swift EdgeInsetsクラスを使って余白を追加するサンプル
環境
Swift version 5.2.3 (swift-5.2.3-RELEASE)
Ubuntu 20.04.2 LTS
構文
top: topPadding
padding修飾子の引 ...
Swift padding修飾子で上に余白を追加するサンプル
環境
Swift version 5.2.3 (swift-5.2.3-RELEASE)
Ubuntu 20.04.2 LTS
構文
xxxView().padding(.top, value) ...
TypeScript 配列の特定の範囲を削除するサンプル
環境
Windows 11 Pro 64bit
TypeScript 4.4.4
構文
配列名.splice(範囲の最初の位置, 削除個数);
splice()の第1引数に範囲の最初の位置( ...
TypeScript substr()で文字列の先頭の文字を削除するサンプル
環境
Windows 11 Pro 64bit
TypeScript 4.4.4
構文
const result: string = 文字列.substr(1)
substr()の引数に「1 ...
TypeScript indexOf()を使ってMapの値(value)の存在チェックする
環境
Windows 11 Pro 64bit
TypeScript 4.4.4
構文
.indexOf(value) > -1
indexOf()の結果が「−1」より大きければ、Ma ...
TypeScript indexOfを使ってObjectの要素の存在チェックをする
環境
Windows 11 Pro 64bit
TypeScript 4.4.4
構文
Object.values(オブジェクト変数名).indexOf(value) > -1
val ...
TypeScript スプレッド構文で配列の重複要素を削除する
環境
Windows 11 Pro 64bit
TypeScript 4.4.4
構文
const result: T
スプレッド構文は、配列から重複する同じ値を削除した配列(Array)を ...