1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-10 23:08:59 +00:00

Flutter 3.29 beta (#2571)

This commit is contained in:
Eric Windmill
2025-02-12 18:08:01 -05:00
committed by GitHub
parent d62c784789
commit 719fd72c38
685 changed files with 76244 additions and 53721 deletions

View File

@@ -66,8 +66,10 @@ void _updateHtml(File htmlFile, String buildDir, String exampleDir) {
final newContent = content
.replaceFirst('<head>', '<head>\n$_analytics')
.replaceFirst(_emptyTitle,
'<title>${_prettyName(exampleDir)} - Flutter web sample</title>');
.replaceFirst(
_emptyTitle,
'<title>${_prettyName(exampleDir)} - Flutter web sample</title>',
);
if (newContent == content) {
print('!!! Did not replace contents in $filePath');
@@ -79,10 +81,13 @@ void _updateHtml(File htmlFile, String buildDir, String exampleDir) {
final _underscoreOrSlash = RegExp('_|/');
String _prettyName(String input) =>
input.split(_underscoreOrSlash).where((e) => e.isNotEmpty).map((e) {
String _prettyName(String input) => input
.split(_underscoreOrSlash)
.where((e) => e.isNotEmpty)
.map((e) {
return e.substring(0, 1).toUpperCase() + e.substring(1);
}).join(' ');
})
.join(' ');
// flutter.github.io
const _analyticsId = 'UA-67589403-8';