FlutterでTextFieldをMultilineにした時、文字が中央によっているのを上寄せにする方法です。
TextFormField(
maxLines: null,
minLines: 3,
controller: _targetTextController,
decoration: InputDecoration(
border: OutlineInputBorder(),
filled: true,
hintText: 'プレースホルダ',
labelText: 'ラベル',
//この一行
alignLabelWithHint: true,
icon: Icon(Icons.notes),
suffixIcon: IconButton(
icon: Icon(Icons.clear),
onPressed: (){_targetTextController.clear();},
),
),
),
TextField(TextFormField)のdecorationの中に「alignLabelWithHint: true;」を記載する。