Live Audio Room App using ZEGOCLOUD and Flutter byahir •March 26, 2023 main.dart import 'package:flutter/material.dart'; import 'package:main_flutter_demo/home_page.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatefulWidget { const MyApp({Key? key}) : super(…
Live Streaming App using ZEGOCLOUD and Flutter byahir •March 04, 2023 main.dart file: import 'package:flutter/material.dart'; import 'package:main_flutter_demo/home_page.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatefulWidget { const MyApp({Key? key}) : …
How To Build Video Calling App with ZEGOCLOUD and Flutter byahir •March 04, 2023 main.dart file: import 'package:flutter/material.dart'; import 'package:flutter_demo/home_page.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatefulWidget { const MyApp({Key? key}) : super…
Map() Method in Dart | Flutter byahir •March 04, 2023 The map() method does not modify the original collection; it returns a new collection with the transformed values. If you want to modify the original collection, you can assign the result of the map() method back to the original …
Fetching Data from API | HTTP get Request in Flutter | Part - 3 byahir •December 17, 2022 API Link: https://jsonplaceholder.typicode.com/users Add http package into pubspec.yaml file: http: ^0.13.5 File: main.dart import 'package:flutter/material.dart'; import 'package:flutter_demo/home_page.dart"…