fill method

void fill(
  1. BuildContext context
)

Clear and fill in the content list

  • extend this class and override to change

Implementation

void fill(BuildContext context) {
  content.clear();
  if (content.isEmpty) {
    content
      ..lazyAdd(logo)
      ..lazyAdd(lazy.textField(context, text: author))
      ..lazyAdd(lazy.textField(context, text: version))
      ..lazyAdd(lazy.textField(context, text: copyright))
      ..lazyAdd(lazy.buttonUrl(context, text: help, url: helpUrl))
      ..lazyAdd(lazy.buttonUrl(context, text: license, url: licenseUrl))
      ..lazyAdd(lazy.buttonUrl(context, text: repo, url: repoUrl))
      ..lazyAdd(lazy.buttonUrl(context,
          text: 'Privacy Policy', url: privacyPolicyUrl))
      ..lazyAdd(lazy.buttonUrl(context, text: homepage, url: homepageUrl))
      ..lazyAdd(lazy.buttonUrl(context, text: blog, url: blogUrl));
  }
}