Dialog 在日常开发中应用广泛,大家也对此很熟悉;和尚以前也整理过关于自定义 Dialog 的小博客,今天和尚系统的学习一下最基本的 Dialog;
Dialog 一般不直接使用,Flutter...AlertDialog
源码分析
const AlertDialog({
Key key,
this.title, // 标题内容
this.titlePadding, // 标题与周围边距...// 消息内容
this.contentPadding = const EdgeInsets.fromLTRB(24.0, 20.0, 24.0, 24.0), // 消息内容与周围边距...this.title, // 标题内容
this.titlePadding = const EdgeInsets.fromLTRB(24.0, 24.0, 24.0, 0.0), // 标题与周围边距..., // 消息内容
this.contentPadding = const EdgeInsets.fromLTRB(0.0, 12.0, 0.0, 16.0), // 消息内容与周围边距