මට htms coad ගැන ඒ ඒ coad වලින් මොනවාද වෙන්නේ කියල දැනගන්න පුලුවන්ද
-
i have flutter tool dir permission error in android studio (4.2.1)
Exception: The flutter tool cannot access the file or directory. Please ensure that the SDK and/or project is installed in a location that has read/write permissions for the current user.9848bc02-043b-4d22-ac58-11f9caa77ddf-image.png
in flutter doctor doesn't have any issues.
I changed the folder permissions also changed dir ownership in my mac, nothing works
-
thumbnail.jpg
Flutter Ecommerce App UI
Watch the full tutorial - https://youtu.be/bCAOaP5O2UY
Don't forget to subscribe the channel!
-
Payhere plugin for flutter
A Flutter plugin for making payments via Payhere Payment Gateway
flutter_payhere.jpg
1.png
-
-
Flutter and Mobile Development Session by Radika Dilanka
ee02bee8-66ab-43b9-b1dd-8de31f39ebb7-image.png
Flutter & Mobile Development Presentation, the session organised by the IEEE students branch at Rajarata University of Sri Lankaspecial thanks to Mathurantha Kanthakumar for inviting me.
and another special Thanks for Mr. Akila Ishan for the video recording and proceeding. -
Hi all,
I have a requirement to play encrypted videos in a flutter application. These files will be stored locally in a mobile device and be played when requested by the media player. The file cannot be decrypted beforehand because of performance issues. Is there a way to handle the decryption while playing the video itself (decrypt file in chunks) ? I'm trying to achieve this through dart itself because this will be used in both iOS and Android. What is the best approach to achieve this? Any comments or suggestions would be appreciated.
Thank you
-
Can anyone answer below question in stack overflow. ?
-
-
thumb.png
Flutter UI Series started, watch my first video on YouTube :point_down: :point_down:
Source Code - https://github.com/gihan667/flutter-login-ui
Coming up episodes will be updated here, stay connected.
Give me support by 👇 👇
✅ Subscribe ✅ Share ✅ Comment & Stay Connected! -
import 'package:flutter/material.dart'; import 'dart:convert'; import 'package:http/http.dart' as http; Future<Profile> fetchProfile() async { final response = await http.get('https://hpb.health.gov.lk/api/get-current-statistical'); if (response.statusCode == 200) { return Profile.fromJson(jsonDecode(response.body)); } else { throw Exception('Failed to load Data'); } } class Profile { String data; Profile({this.data}); factory Profile.fromJson(Map<String, dynamic> json) { return Profile(data : json["data"]); } } void main() { runApp(new MaterialApp( home: new Button(), )); } class MyApp extends StatefulWidget { @override _MyAppState createState() => _MyAppState(); } class _MyAppState extends State<MyApp> { Future<Profile> futureProfile; @override void initState() { futureProfile = fetchProfile(); super.initState(); } @override Widget build(BuildContext context) { return FutureBuilder<Profile>( future: futureProfile, // ignore: missing_return builder: (contex, snapshot) { if (snapshot.hasData) { return Scaffold( body: Center(child: Container(child: Text(snapshot.data.data)))); } else if (snapshot.hasError) { return Text("${snapshot.error}"); } return Scaffold( body: Center( child: CircularProgressIndicator( backgroundColor: Colors.white, strokeWidth: 5, ), ), ); }, ); } } class Button extends StatefulWidget { @override _ButtonState createState() => _ButtonState(); } class _ButtonState extends State<Button> { @override Widget build(BuildContext context) { return Scaffold( body: Center( child: Container(child: RaisedButton( onPressed: () { Navigator.of(context).push(MaterialPageRoute(builder: (_) { return MyApp(); })); }, )), ), ); } }
මේ කෝඩ් එක යට කියල තියෙන විදිහට වෙනස් කරන්නෙ කොහොමද ?
flutter වල ඉන්ටර්නෙට් එක හරහා API කෝල් කරනකොට ජේසන් ෆයිල් එකේ ඇරේ එකක් ඇතුලේ තියෙන ඩේටා කෝල් කරන්නෙ කොහොමද ?
උදාහරනයක් විදිහට මේ වගේ එකකින්.
https://hpb.health.gov.lk/api/get-current-statisticalමේකේ ඩේටා තියෙන්නෙ data කියන ඇරේ එක ඇතුලේ.
ඒක කෝල් කරන්නෙ කොහොමද?:confused: :confused: :confused: -
-
image
පොරොන්දු උන විදියටම ඔන්න අපි අලුත් සීරිස් එකක් පටන් ගත්තා.
📱 Flutter වලින් Mobile Application (iOS + Android) develop කරන විදිය තමා අපි මේ සීරිස් අපි ඉගෙනගන්නේ.
කලින් කරපු Android Sinhalen සීරිස් එක වගේම පිළිවෙලකට මුල ඉදන් මම මේ සීරිස් එකත් කරන්න බලාපොරොත්තු වෙනවා Dart programming language තමයි අපි මේකෙදි පාවිච්චි කරන්නේ. :relaxed:
Flutter Sinhala Video Playlist: http://bit.ly/flutter-sinhala 🇱🇰
කලින් කරපු Android Sinhalen series එක බලන්න මෙතනින් (Android Sinhalen Series) 🇱🇰
ඔයාලට හිතෙන ඕනම දෙයක් වීඩියෝ වල කමෙන්ට් section එකට දාන්න. ඒක ලොකු උදව්වක් ඉස්සරහටත් quality videos හදන්න. අඩු පාඩු තියෙනවනම් මාව පවුද්ගලිකව දැනුවත් කරන්න. ඒ වගෙම මේ ක්ෂේත්රයේ ඉන්න ප්රවීණයෝ අදුනගන්නත් කැමතියි. අපිටත් එන සමහර ගැටළු විසදගන්න ඒක ලොකු උදව්වක්.
ස්තුතියි.
හැමෝටම බලන්න ආරාධනා කරනවා :relaxed:Video Playlist Contents:
Flutter Sinhala Tutorial #1 - Intro to Flutter
Flutter Sinhala Tutorial #2 - Flutter Installation
Flutter Sinhala Tutorial #3 - Flutter File Structure
Flutter Sinhala Tutorial #4 - Main.dart & Widgets
Flutter Sinhala Tutorial #5 - Scaffold Widget
Flutter Sinhala Tutorial #6 - AppBar Part 01
Flutter Sinhala Tutorial #7 - AppBar Part 02
Flutter Sinhala Tutorial #8 - Container Widget
Flutter Sinhala Tutorial #9 - Row & Column Widget
Flutter Sinhala Tutorial #10 - Stateful & Stateless Widget
Flutter Sinhala Tutorial #11 - Navigation (Routes)
Flutter Sinhala Tutorial #12 - ListView & ListTile
UPDATED: 04/04/20
තව වීඩියෝ ඉඩක් ලැබුණ ගමන් මම අනිවාර්යෙන් upload කරනවා. :v:
#Flutter #FlutterSinhala -