flight_booking_app 1.0.0 copy "flight_booking_app: ^1.0.0" to clipboard
flight_booking_app: ^1.0.0 copied to clipboard

VERTU LIFE - 奢华智能生活助手,集成购物、试衣、语音助手等功能

example/lib/main.dart

import 'package:flight_booking_app/config/environment_config.dart';
import 'package:flight_booking_app/main.dart';
import 'package:flight_booking_app/push_service.dart';
import 'package:flutter/material.dart';

void main() async {
  WidgetsFlutterBinding.ensureInitialized();

  // 打印环境配置信息
  EnvironmentConfig.printConfig();

  // 初始化推送服务
  await PushService.init();

  runApp(const MyApp());
}

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'VERTU LIFE',
      theme: ThemeData(primarySwatch: Colors.blue, useMaterial3: true),
      home: const ShopPageWrapper(),
      debugShowCheckedModeBanner: false,
    );
  }
}
0
likes
120
points
0
downloads

Publisher

unverified uploader

Weekly Downloads

VERTU LIFE - 奢华智能生活助手,集成购物、试衣、语音助手等功能

Homepage
Repository

Documentation

API reference

License

MIT (license)

Dependencies

audio_waveforms, audioplayers, cupertino_icons, file_picker, flutter, flutter_svg, http, http_parser, image_picker, path_provider, plugin_platform_interface, shared_preferences, sound_stream

More

Packages that depend on flight_booking_app