Flutter 修改 APP 名称

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>
Flutter 修改 APP 名称
  • 4
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值