赞
踩
dependencies:
flutter_app_name: ^0.1.0
flutter_app_name:
name: "托尼蛋儿"
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;
});
}
}
// 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.
<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"
<?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>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。