Тёмный
Flutter UI Dev
Flutter UI Dev
Flutter UI Dev
Подписаться
Hi developers,
Sharing Flutter Tips & Tricks 👻
Flutter Tutorials under 30 sec 🤯
Made Simple and Easy to understand.
Join me on my journey to build the best community🙋
NFT Marketplace UI - Flutter Speed code
12:06
2 года назад
Комментарии
@ShakeeShirzad
@ShakeeShirzad Час назад
it show me this error lateInitializationError Field _controller has not been initialized how to solve this Sir
@satuteknologi1961
@satuteknologi1961 6 дней назад
did it work with firebase?
@md.shaeakhahmedchowdhury1487
@md.shaeakhahmedchowdhury1487 11 дней назад
broh just took 5 mins to make bomb ! thanks a lot
@christiancolewan
@christiancolewan 11 дней назад
Hi, do you know why it doesnt work on the apk version installed on android phone. It works when I am on debug mode using a physical phone as my selected device
@emmankianga9082
@emmankianga9082 24 дня назад
Does it support google cast and airplay for the videos?
@cehpurushothaman6165
@cehpurushothaman6165 Месяц назад
Amazing it's working perfectly . My manager was very happy. Thank you so much.
Месяц назад
Can we remove RU-vid watermark from that RU-vid player video after compiling flutter program
@ahmadnasir001
@ahmadnasir001 Месяц назад
How to add gif?
@richard2845
@richard2845 2 месяца назад
awesome
@sanjaystewart666
@sanjaystewart666 2 месяца назад
There is no way that's flutter bro
@xliptoon
@xliptoon 2 месяца назад
Oh my God
@awdheshdubey2549
@awdheshdubey2549 2 месяца назад
Ohhh dammm 😍😍😍😍How the above tabss are floating I wanna learn
@نجمالدينالدغار-ص1ف
@نجمالدينالدغار-ص1ف 2 месяца назад
We need the source code❤
@bharathchandrapanasa7997
@bharathchandrapanasa7997 3 месяца назад
Can it run in background?
@flutteruidev
@flutteruidev 2 месяца назад
I gues it doesn't support that
@ravsahebaware2164
@ravsahebaware2164 3 месяца назад
sir plz give me source code
@tusharchander8935
@tusharchander8935 3 месяца назад
bhai source code please!!
@tusharchander8935
@tusharchander8935 3 месяца назад
Source code please!!
@cellastudio7903
@cellastudio7903 4 месяца назад
Your help plus copilot, will finish it in 1 minute.
@yarachesu2604
@yarachesu2604 4 месяца назад
Reso coder is better than to your videos they gave us a full knowledg.
@llamacoder
@llamacoder 5 месяцев назад
The person making this package seems to be a descendant of Newton😂
@flutteruidev
@flutteruidev 4 месяца назад
😂
@henrydoblado5724
@henrydoblado5724 5 месяцев назад
Muchas gracias, señor Hindú que no conozco, pero me que salvo el periodo.
@sebastianrebazalarosa3634
@sebastianrebazalarosa3634 3 месяца назад
Los otros comentarios me dieron confianza en que era bueno el tuto, pero *ÉSTE* es el sello de calidad A-1. Ahorita lo pongo en mi app.
@AhmedAlselmy
@AhmedAlselmy 5 месяцев назад
What English is this???? I don't understand anything
@harshalkenjale927
@harshalkenjale927 6 месяцев назад
Don't use 'BuildContext's across async gaps. Try rewriting the code to not use the 'BuildContext', or guard the use with a 'mounted' check. getting this error itll be helpful if you guide me with this.
@atreyanagal2790
@atreyanagal2790 6 месяцев назад
Awesome
@BOYGG-be8tb
@BOYGG-be8tb 6 месяцев назад
how to build this?
@YouMatter-f3l
@YouMatter-f3l 7 месяцев назад
i have created a stateful widget splash screen, is it possible to use this as native splash screen ?
@21P255SWATHIKAG
@21P255SWATHIKAG 7 месяцев назад
Rejecting promise with error: TypeError: Cannot set properties of undefined (setting 'nativeCommunication') why does this occur??
@wintercode
@wintercode 6 месяцев назад
I've also encountered this error. 😮‍💨
@IneffableRespect
@IneffableRespect 7 месяцев назад
Super bro
@antonius-ez7mx
@antonius-ez7mx 8 месяцев назад
can you give the tutorial to change the notification icon
@make-love-not-war-Z
@make-love-not-war-Z 8 месяцев назад
красота 🥰
@tasaddaqrandhawa4219
@tasaddaqrandhawa4219 8 месяцев назад
really helpful also clean code using provider arch.
@sajedulislam7918
@sajedulislam7918 9 месяцев назад
The notch area is blank when the status bar is hidden or in Fullscreen mode... I was working with a video player and came up with this problem. Can you please help 🙏... Or does anyone have any idea how to get a true full screen????😢😢😢
@malikTaha425
@malikTaha425 9 месяцев назад
why have you not defined listeners as per documentation it is required?
@NvestSolution
@NvestSolution 9 месяцев назад
looks like no has done face authenticatino in android flutter
@ren76566
@ren76566 10 месяцев назад
Can i change the heigth of screen?
@thelocaldev
@thelocaldev 10 месяцев назад
nice video , what's the font you're using
@zedicustenebres8031
@zedicustenebres8031 10 месяцев назад
Help the video loads i can see the image but video is not playing
@zedicustenebres8031
@zedicustenebres8031 10 месяцев назад
nah its good its just my emulator
@shekharkashyap2148
@shekharkashyap2148 10 месяцев назад
import 'package:custom_refresh_indicator/custom_refresh_indicator.dart'; import 'package:flutter/material.dart'; import 'package:rive/rive.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); // This widget is the root of your application. @override Widget build(BuildContext context) { return MaterialApp( title: 'Flutter Demo', theme: ThemeData( colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple), useMaterial3: true, ), home: const MyHomePage(title: 'Flutter Demo Home Page'), ); } } class MyHomePage extends StatefulWidget { const MyHomePage({super.key, required this.title}); final String title; @override State<MyHomePage> createState() => _MyHomePageState(); } class _MyHomePageState extends State<MyHomePage> { final _ofsettoarm = 220.0; @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( backgroundColor: Theme.of(context).colorScheme.inversePrimary, title: Text(widget.title), ), body: CustomRefreshIndicator( child: DummyList(), onRefresh: () => Future.delayed(const Duration(seconds: 1)), offsetToArmed: _ofsettoarm, builder: (context, child, controller) => AnimatedBuilder( animation: controller, child: child, builder: (context, child) { return Stack( children: [ SizedBox( width: double.infinity, height: _ofsettoarm * controller.value, child: const RiveAnimation.asset( "assets/raster-graphics-example.riv", fit: BoxFit.cover), ), Transform.translate( offset: Offset(0.0, _ofsettoarm * controller.value), child: controller.isLoading ? DummyList() : child) ], ); }))); } } class DummyList extends StatelessWidget { @override Widget build(BuildContext context) { return ListView.separated( itemCount: 10, // Number of items in the list separatorBuilder: (context, index) => Divider(), // Separator between items itemBuilder: (context, index) { return Container( padding: EdgeInsets.all(10), margin: EdgeInsets.all(10), decoration: BoxDecoration( borderRadius: BorderRadius.circular(10.00), color: Colors.green), height: 300, child: Center(child: Text('Item $index')), ); }, ); } }
@BluerayBooks
@BluerayBooks 10 месяцев назад
import 'package:custom_refresh_indicator/custom_refresh_indicator.dart'; import 'package:flutter/material.dart'; import 'package:rive/rive.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); // This widget is the root of your application. @override Widget build(BuildContext context) { return MaterialApp( title: 'Flutter Demo', theme: ThemeData( colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple), useMaterial3: true, ), home: const MyHomePage(title: 'Flutter Demo Home Page'), ); } } class MyHomePage extends StatefulWidget { const MyHomePage({super.key, required this.title}); final String title; @override State<MyHomePage> createState() => _MyHomePageState(); } class _MyHomePageState extends State<MyHomePage> { final _ofsettoarm = 220.0; @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( backgroundColor: Theme.of(context).colorScheme.inversePrimary, title: Text(widget.title), ), body: CustomRefreshIndicator( child: DummyList(), onRefresh: () => Future.delayed(const Duration(seconds: 1)), offsetToArmed: _ofsettoarm, builder: (context, child, controller) => AnimatedBuilder( animation: controller, child: child, builder: (context, child) { return Stack( children: [ SizedBox( width: double.infinity, height: _ofsettoarm * controller.value, child: const RiveAnimation.asset( "assets/raster-graphics-example.riv", fit: BoxFit.cover), ), Transform.translate( offset: Offset(0.0, _ofsettoarm * controller.value), child: controller.isLoading ? DummyList() : child) ], ); }))); } } class DummyList extends StatelessWidget { @override Widget build(BuildContext context) { return ListView.separated( itemCount: 10, // Number of items in the list separatorBuilder: (context, index) => Divider(), // Separator between items itemBuilder: (context, index) { return Container( padding: EdgeInsets.all(10), margin: EdgeInsets.all(10), decoration: BoxDecoration( borderRadius: BorderRadius.circular(10.00), color: Colors.green), height: 300, child: Center(child: Text('Item $index')), ); }, ); } }
@remomuthu2265
@remomuthu2265 10 месяцев назад
How can i do in flutter and also will this UI may change for different phones right how to handle it?
@richardappow6770
@richardappow6770 10 месяцев назад
Fantastic! But how can you animate the ethereum price tag?
@gedeonyala6836
@gedeonyala6836 10 месяцев назад
thanks for the video, really helpful
@brittanydufort7240
@brittanydufort7240 10 месяцев назад
As a flutter newbie - this was really great. The only issue I haven't been able to get past is for iOS. I have faceid enrolled in the simulator, I've restarted, hot reloaded, etc. I have triple checked that everything is setup per this video and the flutter local_auth docs. I continuously get an empty array for available biometrics for iOS. I spent the day scouring the web without luck. Any thoughts?
@asfaqahmedsiddique4811
@asfaqahmedsiddique4811 11 месяцев назад
After the picture in picture mode is enabled, the video starts again. What should I do about it? I don't want the video to start again, rather continue the playing.
@KrishnaKumar-z4g8s
@KrishnaKumar-z4g8s 10 месяцев назад
did you find any solution ?
@asfaqahmedsiddique4811
@asfaqahmedsiddique4811 10 месяцев назад
@@KrishnaKumar-z4g8s Yeah I used another plugin. simple_pip_mode: ^0.8.0
@bryantmichael6863
@bryantmichael6863 11 месяцев назад
Please make a video of adding fingerprint authentication to webview app
@abdulshaikh2401
@abdulshaikh2401 11 месяцев назад
can you please guide me to how can i compile and run my flutter project in my local ios device PS: i have a windows machine
@aakashnkl
@aakashnkl 11 месяцев назад
the rive url isnt working . Can u look into it please
@aouadicharaf1038
@aouadicharaf1038 11 месяцев назад
Subscribed!!❤ i hope u can make complete flutter projects in the future ❤️
@adityadwivedi8798
@adityadwivedi8798 11 месяцев назад
QUALITY OPTIONS??