Flutter Sliderの値の間隔を設定するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
Slider( divisions: 何等分, value: _value,Sliderの値の間隔を設定するには、 ...
Flutter Sliderの太さを設定するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
構文SliderTheme( data: SliderThemeData( trackHeight:/*太さ*/, ), ...Flutter Sliderの操作する部分の大きさを変えるサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
SliderTheme( data: SliderThemeData( thumbShape: RoundSliderT ...Flutter Sliderで変更中に値を表示するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
Slider( value: _value, onChanged: (newValue) { xxx }, divisi ...Flutter ElevatedButtonの影の大きさを変えるサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
style: ElevatedButton.styleFrom( elevation:/*影の大きさ*/),Ele ...
Flutter Containerを使ってOutlinedButtonのマージンを設定するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
margin:/*EdgeInsetsクラスでマージンを指定*/,
OutlinedButtonをContai ...
Flutter Textのテキストに下線をつけるサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
decoration: TextDecoration.underline,
TextStyleの引数「deco ...
Flutter Columnを使ってTextを箇条書きにするサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
ListView( children: , ), ), );}
Flutter Textのテキストを全て大文字にするサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
Text(‘文字列’.toUpperCase()),
Textのテキストを全て大文字に ...
Flutter Wrapの要素を左に寄せるサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
SizedBox( width:/*横幅*/, child: Wrap( children: <Widget> ...Flutter GestureDetectorでCardをタップするサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
カードをタップ出来るようにするには、GestureDetectorを使います。
GestureDetector ...
Flutter DataTableのチェックボックスを非表示にするサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
showCheckboxColumn: false,
DataTableのチェックボックスを非表示に設定するに ...
Flutter DataTableのヘッダーの背景色を設定するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
headingRowColor: MaterialStateProperty.resolveWith((states) ...Flutter DataTableにDataRowを追加する方法
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
DataTableにDataRowを追加するには、リストの変数を使います。
作成方法
1.表示するDa ...
Flutter DataTableのヘッダーを非表示にするサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
headingRowHeight: 0,DataTableのヘッダーを非表示にするには、引数「headingRow ...
Flutter DataTableを横スクロールするサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
SingleChildScrollView( scrollDirection: Axis.horizontal, //引 ...Flutter webview_flutterを使用する方法
環境
Windows11 pro 64bit
Flutter 3.3.7
操作方法
1.pubspec.yamlでパッケージを追加します。
dependencies:
webview ...
Flutter Materialを使ってアイコン(icon)の形を指定する方法
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
Material(
shape: CircleBorder(), //引数「shape」に形を指定する ...