metaTagsTemplate top-level property

String Function(String appleMobileWebAppTitle, String appleMobileWebAppStatusBarStyle, {bool shouldInsertFLIString = false}) metaTagsTemplate
final

Implementation

final metaTagsTemplate = (
  String appleMobileWebAppTitle,
  String appleMobileWebAppStatusBarStyle, {
  bool shouldInsertFLIString = false,
}) =>
    '''
  <!--Generated by Flutter Launcher Icons-->
  <!--FLI-->
  <meta name="apple-mobile-web-app-capable" content="yes">
  <meta name="apple-mobile-web-app-status-bar-style" content="$appleMobileWebAppStatusBarStyle">
  <meta name="apple-mobile-web-app-title" content="$appleMobileWebAppTitle">
  <link rel="apple-touch-icon" href="icons/Icon-192.png">

  <!-- Favicon -->
  <link rel="icon" type="image/png" href="favicon.png"/>

  <link rel="manifest" href="manifest.json">
  <!--FLIEND-->
  <!--Generated by Flutter Launcher Icons--END-->
''';