Flutter 修改 APP 名称

发布时间 2023-11-24 10:29:52作者: vx_guanchaoguo0

flutter

  • pubspec.yaml
dependencies:
  flutter_app_name: ^0.1.0
flutter_app_name:
  name: "托尼蛋儿"

web H5

  • lib/routes/App.dart
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:televised_live/routes/HomeRoute.dart';

import '../common/ThemeDataColor.dart';
import 'VideoPlayerRoute.dart';

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
        title: '托尼蛋儿',
        theme: ThemeData(
          primarySwatch: themeDataMaterialColor(),
        ),
        home: const HomeRoute(),
        onGenerateRoute: (settings) {
          if (settings.name == 'page') {
            final args = settings.arguments as Map<String, dynamic>;
            return MaterialPageRoute(
                builder: (context) =>
                    VideoPlayerRoute(vid: args['vid'] as String));
          }
          return null;
        });
  }
}

manos

  • macos/Runner/Configs/AppInfo.xcconfig
// Application-level settings for the Runner target.
//
// This may be replaced with something auto-generated from metadata (e.g., pubspec.yaml) in the
// future. If not, the values below would default to using the project name when this becomes a
// 'flutter create' template.

// The application's name. By default this is also the title of the Flutter window.
PRODUCT_NAME = 托尼蛋儿

// The application's bundle identifier
PRODUCT_BUNDLE_IDENTIFIER = com.example.televisedLive

// The copyright displayed in application information
PRODUCT_COPYRIGHT = Copyright © 2023 com.example. All rights reserved.

Andirod

  • android/app/src/main/AndroidManifest.xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
    <application
        android:label="托尼蛋儿"
        android:name="${applicationName}"
        android:icon="@mipmap/ic_launcher">
        <activity
            android:name=".MainActivity"

IOS

  • ios/Runner/Info.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>CFBundleDevelopmentRegion</key>
	<string>$(DEVELOPMENT_LANGUAGE)</string>
	<key>CFBundleDisplayName</key>
	<string>托尼蛋儿</string>
	<key>CFBundleExecutable</key>
	<string>$(EXECUTABLE_NAME)</string>