Swift ZStackを利用してテキストの背景に円を表示するサンプル
環境
Swift version 5.2.3 (swift-5.2.3-RELEASE)
Ubuntu 20.04.2 LTS
構文
ZStack { Circle() Text("文字列")}...
Swift overlay修飾子で画像にテキストを重ねるサンプル
環境
Swift version 5.2.3 (swift-5.2.3-RELEASE)
Ubuntu 20.04.2 LTS
構文
Image("アセット名") .overlay( Text("文字 ...Dart 正規表現に一致する文字列を抽出するサンプル
環境
Windows 11 pro 64bit
Dart 2.18.4
構文
正規表現に一致する文字列を抽出するには、RegExpを使います。
1.引数に正規表現を指定したRegExpをイン ...
Dart 文字列を日付に変換するサンプル
環境
Windows 11 pro 64bit
Dart 2.18.4
構文
1.intlパッケージを導入します。
import ‘package:intl/intl.dart& ...
Dart DateTimeのフォーマットのロケールを設定するサンプル
環境
Windows 11 pro 64bit
Dart 2.18.4
構文
final formatter = DateFormat.yMd(‘ロケール’);
Da ...
Dart 10進数を16進数の文字列に変換するサンプル
環境
Windows 11 pro 64bit
Dart 2.18.4
構文
String hex = 変数名.toRadixString(16);
toRadixStringメソッドを利用 ...
Dart DateTimeをiso8601文字列に変換するサンプル
環境
Windows 11 pro 64bit
Dart 2.18.4
構文
final 変数名= DateTime変数名.toIso8601String();
toIso8601Strin ...
Swift dropLastメソッドを使ってTextFieldに削除ボタンを追加するサンプル
環境
Swift version 5.2.3 (swift-5.2.3-RELEASE)
Ubuntu 20.04.2 LTS
構文
HStack { TextField("",text: $edit ...Swift テキストカラーを変えるサンプル
環境
Swift version 5.2.3 (swift-5.2.3-RELEASE)
Ubuntu 20.04.2 LTS
構文
Button(xxx) .foregroundColor(colo ...Swift shadow関数で影をつけるサンプル
環境
Swift version 5.2.3 (swift-5.2.3-RELEASE)
Ubuntu 20.04.2 LTS
構文
func shadow( Color : Color , rad ...
Swift DatePickerを日本語化するサンプル
環境
Swift version 5.2.3 (swift-5.2.3-RELEASE)
Ubuntu 20.04.2 LTS
構文
DatePickerを日本語化するには、environment修 ...
Swift Pickerのスタイルを設定するサンプル
環境
Swift version 5.2.3 (swift-5.2.3-RELEASE)
Ubuntu 20.04.2 LTS
構文
Picker(xxx) .pickerStyle(PickerSt ...Microsoft Azure Network Security Group (NSG) を設定する方法
環境
Microsoft Azure
操作方法
Azure ポータルのメニューから すべてのサービス を選択します。
2.検索ボックスに nsg と入力し、検索します。
3.「ネット ...
Microsoft Azure Bastion を構築する手順
環境
Microsoft Azure
構築手順
1.サブネットの構築
2.Azure Bastion の構築
サブネットの構築方法
1).Azure portal管理画面にサイン ...
Flutter ListView.builderを横スクロールにするサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
ListView.builder( scrollDirection: Axis.horizontal, itemCoun ...Flutter Containerに影をつけるサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
decoration: BoxDecoration( boxShadow: , ),Containerに影をつける ...
Flutter FittedBoxを使ってアイコンをContainerのサイズに合わせるサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
child: FittedBox( child: Icon(アイコン), fit: BoxFit.fill,),ア ...
kotlin floorで数値の小数点以下を切り捨てるサンプル
環境
Windows11 pro 64bit
java 19.0.1
kotlin 1.7.20-release-201
構文
val 変数名 = Math.floor(数値);
M ...