getCommitButton method
Implementation
Widget getCommitButton() {
return this._commitButton ??
Container(
alignment: Alignment.center,
padding: const EdgeInsets.only(left: 12, right: 22),
child: Text('确定',
style: TextStyle(
color: Theme.of(context!).primaryColor, fontSize: 16.0)),
);
}