enx_uikit_flutter 2.0.9
enx_uikit_flutter: ^2.0.9 copied to clipboard
EnableX Flutter Uikit allows developers to implement real-time communication channels such as audio, video, and text chat in their applications on iOS and Android Platforms.
example/lib/main.dart
import 'dart:io';
import 'package:example/pages/login_ui.dart';
import 'package:shelf/shelf_io.dart' as io;
import 'package:shelf_static/shelf_static.dart';
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:shelf_static/shelf_static.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return GetMaterialApp(
debugShowCheckedModeBanner: false,
title: 'Flutter GetX Demo',
theme: ThemeData(),
darkTheme: ThemeData.dark(),
themeMode: ThemeMode.system,
home: SafeArea(child: LoginScreen()),
);
}
}