v_chat_voice_player 2.1.0 v_chat_voice_player: ^2.1.0 copied to clipboard
v chat voice player package this item is part of v_chat_sdk and it can be used as a standalone package
// Copyright 2023, the hatemragab project author.
// All rights reserved. Use of this source code is governed by a
// MIT license that can be found in the LICENSE file.
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'app/routes/app_pages.dart';
void main() {
runApp(
GetMaterialApp(
title: "Application",
initialRoute: AppPages.INITIAL,
getPages: AppPages.routes,
),
);
}