当前位置:   article > 正文

Flutter 修改 APP 名称_flutter 设置app名称

flutter 设置app名称

flutter

  • pubspec.yaml
dependencies:
  flutter_app_name: ^0.1.0
flutter_app_name:
  name: "托尼蛋儿"
  • 1
  • 2
  • 3
  • 4

web H5

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

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.
  • 1
  • 2
  • 3
  • 4
  • 5

// 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"
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

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>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
Flutter 修改 APP 名称
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/549349
推荐阅读
相关标签
  

闽ICP备14008679号