You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// The title displayed to the user
final String title;
/// The message displayed to the user.
final String message;
/// Replaces [title]. Although this accepts a [Widget], it is meant to receive [Text] or [RichText]
final Widget titleText;
/// Replaces [message]. Although this accepts a [Widget], it is meant to receive [Text] or [RichText]
final Widget messageText;
If this were to be consistent with Flutter naming schemes, we'd swap the names.
title should be a Widget, and titleText should be a String. Take InputDecoration for example.
The text was updated successfully, but these errors were encountered:
If this were to be consistent with Flutter naming schemes, we'd swap the names.
![Screen Shot 2020-05-29 at 3 48 45 PM](https://user-images.githubusercontent.com/23037821/83311433-0fdc9e00-a1c4-11ea-8aa8-24a9d1057d5a.png)
title should be a
Widget
, andtitleText
should be aString
. TakeInputDecoration
for example.The text was updated successfully, but these errors were encountered: