New post on /r/flutterdev subreddit:
Should I learn Flutter or React?
HiI'm a software eng student, but have been doing Android development (Java) for the last year and even published my own app. I love Java, I love Android, but I also want to develop for iOS. I'm pretty interested in learning Dart because I figure it's a little challenging to maintain two separate apps as an individual, so the one codebase aspect is nice.But I would say I am an intermediate developer, so I'm a little weary by how new Flutter is and feel like if I run into an issue and can't find anything online, I'll be stuck (I learnt Android by just trying, and googling when I got stuck, for which there were plenty of resources). Then there's the smaller things I've seen like the lack of mapview (although I found a library with a quick google search) and libraries like Picasso for example which I've found pretty nifty.I haven't really tried Javascript, but my impression wasn't positive, but that could just be because it was in school and I don't like learning programming by reading slides lol. But then, JS also seems more valuable to learn for employability (well that won't mean anything if I don't end up liking it, but assuming I do). Plus, since it's established, there are more resources, useful plug ins etcAny advice? Should I just go for Flutter or go for the safer pick? I plan on porting my current Android app as a way of learning either
February 22, 2019 at 06:06AM by pushalu
https://ift.tt/2XiXZSj
Should I learn Flutter or React?
HiI'm a software eng student, but have been doing Android development (Java) for the last year and even published my own app. I love Java, I love Android, but I also want to develop for iOS. I'm pretty interested in learning Dart because I figure it's a little challenging to maintain two separate apps as an individual, so the one codebase aspect is nice.But I would say I am an intermediate developer, so I'm a little weary by how new Flutter is and feel like if I run into an issue and can't find anything online, I'll be stuck (I learnt Android by just trying, and googling when I got stuck, for which there were plenty of resources). Then there's the smaller things I've seen like the lack of mapview (although I found a library with a quick google search) and libraries like Picasso for example which I've found pretty nifty.I haven't really tried Javascript, but my impression wasn't positive, but that could just be because it was in school and I don't like learning programming by reading slides lol. But then, JS also seems more valuable to learn for employability (well that won't mean anything if I don't end up liking it, but assuming I do). Plus, since it's established, there are more resources, useful plug ins etcAny advice? Should I just go for Flutter or go for the safer pick? I plan on porting my current Android app as a way of learning either
February 22, 2019 at 06:06AM by pushalu
https://ift.tt/2XiXZSj
reddit
r/FlutterDev - Should I learn Flutter or React?
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
code magic ios publish
hi, while running build i see below issueFailed to fetch signing files from Apple Developer Portal: User None is not part of any teams on the Developer Portal. You must accept an invitation to a team for it to be available. Visit https://developer.apple.com/library/ios/documentation/IDEs/Conceptual/AppDistributionGuide/ManagingYourTeam/ManagingYourTeam.html to learn more about teams.do i need to have iphone to handle it?
February 22, 2019 at 07:55AM by Kotaibaw
https://ift.tt/2BMTiqS
code magic ios publish
hi, while running build i see below issueFailed to fetch signing files from Apple Developer Portal: User None is not part of any teams on the Developer Portal. You must accept an invitation to a team for it to be available. Visit https://developer.apple.com/library/ios/documentation/IDEs/Conceptual/AppDistributionGuide/ManagingYourTeam/ManagingYourTeam.html to learn more about teams.do i need to have iphone to handle it?
February 22, 2019 at 07:55AM by Kotaibaw
https://ift.tt/2BMTiqS
Apple
Invite team members - Manage your team - Account - Help - Apple Developer
Learn how to invite people to join your team in the Apple Developer Program or Apple Developer Enterprise Program.
New post on /r/flutterdev subreddit:
How do I connect Flutter with Genymotion?
I have a problem with running my Flutter app on Android emulator using Genymotion.After launch emulator, I have tried to "flutter run", but it didn't work. Console shows "No connected devices."So how can I connect flutter with Genymotion? Could you tell me something?https://gyazo.com/7fd9bd8a98c9ad1de272df1484b6c70e https://gyazo.com/7d75068683c043922c5fff75377e9817 https://gyazo.com/c9ccae04ffdfba3fa66fa6ff7e038e8f
February 22, 2019 at 11:28AM by TorHonye
https://ift.tt/2T8CxjH
How do I connect Flutter with Genymotion?
I have a problem with running my Flutter app on Android emulator using Genymotion.After launch emulator, I have tried to "flutter run", but it didn't work. Console shows "No connected devices."So how can I connect flutter with Genymotion? Could you tell me something?https://gyazo.com/7fd9bd8a98c9ad1de272df1484b6c70e https://gyazo.com/7d75068683c043922c5fff75377e9817 https://gyazo.com/c9ccae04ffdfba3fa66fa6ff7e038e8f
February 22, 2019 at 11:28AM by TorHonye
https://ift.tt/2T8CxjH
Gyazo
Screenshot by Gyazo
Easily capture screenshots, GIFs, and replays that are ready to share. Download the free app for windows and mac.
New post on /r/flutterdev subreddit:
[NOOB]Noob alert : New to flutter, will be asking for help nowadays :D
So I am new to flutter and dart so I will be frequently asking for help here as the 3rd party plug-ins/widgets are not widely available.So I was looking for a solution to this thing :which thing ? This thing => How can I set haptic feedback intensity ??As flutter is quite new, I will be posting a tutorial after I have fully developed one App so others can benefit from it (obviously xD)
February 22, 2019 at 11:13AM by deepss1
https://ift.tt/2IImjtV
[NOOB]Noob alert : New to flutter, will be asking for help nowadays :D
So I am new to flutter and dart so I will be frequently asking for help here as the 3rd party plug-ins/widgets are not widely available.So I was looking for a solution to this thing :which thing ? This thing => How can I set haptic feedback intensity ??As flutter is quite new, I will be posting a tutorial after I have fully developed one App so others can benefit from it (obviously xD)
February 22, 2019 at 11:13AM by deepss1
https://ift.tt/2IImjtV
reddit
r/FlutterDev - [NOOB]Noob alert : New to flutter, will be asking for help nowadays :D
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
RTSP stream with video player flutter
i want to stream CCTV live video from RTSP url to flutter video player plugin , how to do this ?```import 'package:flutter/material.dart';
import 'package:video_player/video_player.dart';class CCTV extends StatefulWidget {
@override
_CCTVState createState() => _CCTVState();
}class _CCTVState extends State<CCTV> {
VideoPlayerController _controller;@override
void initState() {
super.initState();
_controller = VideoPlayerController.network(
'rtsp://192.168.43.1:8080/h264_ulaw.sdp')
..initialize().then((_) {
// Ensure the first frame is shown after the video is initialized, even before the play button has been pressed.
setState(() {});
});
}@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Video Demo',
home: Scaffold(
body: Center(
child: _controller.value.initialized
? AspectRatio(
aspectRatio: _controller.value.aspectRatio,
child: VideoPlayer(_controller),
)
: Container(),
),
floatingActionButton: FloatingActionButton(
onPressed: () {
setState(() {
_controller.value.isPlaying
? _controller.pause()
: _controller.play();
});
},
child: Icon(
_controller.value.isPlaying ? Icons.pause : Icons.play_arrow,
),
),
),
);
}@override
void dispose() {
super.dispose();
_controller.dispose();
}
}```
February 22, 2019 at 10:40AM by lavkushwaha
https://ift.tt/2U3pEoe
RTSP stream with video player flutter
i want to stream CCTV live video from RTSP url to flutter video player plugin , how to do this ?```import 'package:flutter/material.dart';
import 'package:video_player/video_player.dart';class CCTV extends StatefulWidget {
@override
_CCTVState createState() => _CCTVState();
}class _CCTVState extends State<CCTV> {
VideoPlayerController _controller;@override
void initState() {
super.initState();
_controller = VideoPlayerController.network(
'rtsp://192.168.43.1:8080/h264_ulaw.sdp')
..initialize().then((_) {
// Ensure the first frame is shown after the video is initialized, even before the play button has been pressed.
setState(() {});
});
}@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Video Demo',
home: Scaffold(
body: Center(
child: _controller.value.initialized
? AspectRatio(
aspectRatio: _controller.value.aspectRatio,
child: VideoPlayer(_controller),
)
: Container(),
),
floatingActionButton: FloatingActionButton(
onPressed: () {
setState(() {
_controller.value.isPlaying
? _controller.pause()
: _controller.play();
});
},
child: Icon(
_controller.value.isPlaying ? Icons.pause : Icons.play_arrow,
),
),
),
);
}@override
void dispose() {
super.dispose();
_controller.dispose();
}
}```
February 22, 2019 at 10:40AM by lavkushwaha
https://ift.tt/2U3pEoe
reddit
r/FlutterDev - RTSP stream with video player flutter
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Revealed! Flutter Slides at Flutter Live ‘18
https://ift.tt/2GEsBsA
February 22, 2019 at 03:39PM by MisterJimson
https://ift.tt/2GYqtvc
Revealed! Flutter Slides at Flutter Live ‘18
https://ift.tt/2GEsBsA
February 22, 2019 at 03:39PM by MisterJimson
https://ift.tt/2GYqtvc
Medium
Revealed! Flutter Slides at Flutter Live ‘18
On December 4th, 2018, Flutter Live ’18 showed the world the first major glimpse of the exciting vision for Flutter. Not only did Flutter…
New post on /r/flutterdev subreddit:
How to incorporate StreamBuilder into a SliverList?
I have a StreamBuilder to fetch data, then passing it onto a ListView.builder to populate the list. Now I want to add a SliverAppBar to have a collapsing AppBar as I scroll down the list.How can I incorporate my listview builder into a CustomScrollView sliver? Or do I convert my ListView.builder into a SliverListView? How do I accomplish this?
February 22, 2019 at 03:24PM by rxddit_
https://ift.tt/2twXRB5
How to incorporate StreamBuilder into a SliverList?
I have a StreamBuilder to fetch data, then passing it onto a ListView.builder to populate the list. Now I want to add a SliverAppBar to have a collapsing AppBar as I scroll down the list.How can I incorporate my listview builder into a CustomScrollView sliver? Or do I convert my ListView.builder into a SliverListView? How do I accomplish this?
February 22, 2019 at 03:24PM by rxddit_
https://ift.tt/2twXRB5
reddit
r/FlutterDev - How to incorporate StreamBuilder into a SliverList?
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Loading Local Assets in WebView in Flutter
https://ift.tt/2tzbtM7
February 22, 2019 at 02:30PM by x_ash
https://ift.tt/2GXTFT1
Loading Local Assets in WebView in Flutter
https://ift.tt/2tzbtM7
February 22, 2019 at 02:30PM by x_ash
https://ift.tt/2GXTFT1
Medium
Loading Local Assets in WebView in Flutter
The Flutter WebView plugin is in preview and at the moment it only loads URIs. It’d be nice if we can load local html (along with…
New post on /r/flutterdev subreddit:
Why iOS developers should pay attention to Flutter in 2019?
https://ift.tt/2ty0wKM
February 22, 2019 at 02:14PM by techologynews
https://ift.tt/2GTqEb3
Why iOS developers should pay attention to Flutter in 2019?
https://ift.tt/2ty0wKM
February 22, 2019 at 02:14PM by techologynews
https://ift.tt/2GTqEb3
W2S Solutions Blog
Why iOS developers should pay attention to Flutter in 2019? - W2S Solutions Blog
Rich native Mobile App experience can be achieved by choosing the right mobile UI framework. Flutter takes the pride by helping Mobile App development companies to deliver Beautiful Mobile Apps in iOS and Android platforms. This Mobile App SDK offers faster…
New tweet from flutterio:
🎊The Flutter YouTube channel is here! 🎊
Head on over to see all the content for both new and experienced Flutter developers, including your favorites shows like the #BoringShow, #WidgetoftheWeek, and more! ▶️
Subscribe now ↓ pic.twitter.com/I2vIHiJtS9— Flutter (@flutterio) February 22, 2019
February 22, 2019 at 07:00PM
http://twitter.com/flutterio/status/1099005905234841600
🎊The Flutter YouTube channel is here! 🎊
Head on over to see all the content for both new and experienced Flutter developers, including your favorites shows like the #BoringShow, #WidgetoftheWeek, and more! ▶️
Subscribe now ↓ pic.twitter.com/I2vIHiJtS9— Flutter (@flutterio) February 22, 2019
February 22, 2019 at 07:00PM
http://twitter.com/flutterio/status/1099005905234841600
Twitter
#boringshow hashtag on Twitter
38m ago @FlutterDev tweeted: "📺 The #BoringShow is back! 📺
Join @f.." - read what others are saying and join the conversation.
Join @f.." - read what others are saying and join the conversation.
New post on /r/flutterdev subreddit:
Introducing Flutter Create
https://www.youtube.com/watch?v=BKl6gUvvZGs
February 22, 2019 at 06:26PM by catapop
https://ift.tt/2txdit3
Introducing Flutter Create
https://www.youtube.com/watch?v=BKl6gUvvZGs
February 22, 2019 at 06:26PM by catapop
https://ift.tt/2txdit3
YouTube
Introducing Flutter Create
Do you want to learn a fun new skill, meet other cool people, and potentially win prizes of up to $10,000? Flutter Create is exactly that: an opportunity to ...
New post on /r/flutterdev subreddit:
Tinder like swipe cards
https://ift.tt/2txdjx7
February 22, 2019 at 06:15PM by ishanfx
https://ift.tt/2GZr6nV
Tinder like swipe cards
https://ift.tt/2txdjx7
February 22, 2019 at 06:15PM by ishanfx
https://ift.tt/2GZr6nV
MIGHTY TECHNO
Tinder like swipe cards in Flutter app - MIGHTY TECHNO
Tinder-like swipe card implement using Draggable, Stack, Card widget in Flutter. These cards will be removed from view when drag and swipe
New post on Flutter Dev Google group:
Problem to Add Firebase to Flutter app
Hello to everyone. I just have studed this codelab Try the Firebase for Flutter codelab → http://bit.ly/2JdRFIz < https://www.youtube.com/redirect?q=http%3A%2F%2Fbit.ly%2F2JdRFIz&event=video_description&v=DqJ_KjFzL9I&redir_token=ULIgDbJakYdszZGovoMJ6c5tu2F8MTU1MDkzOTI2NUAxNTUwODUyODY1> and i
February 22, 2019 at 07:35PM by Ivan Mojica
https://ift.tt/2T9xShr
Problem to Add Firebase to Flutter app
Hello to everyone. I just have studed this codelab Try the Firebase for Flutter codelab → http://bit.ly/2JdRFIz < https://www.youtube.com/redirect?q=http%3A%2F%2Fbit.ly%2F2JdRFIz&event=video_description&v=DqJ_KjFzL9I&redir_token=ULIgDbJakYdszZGovoMJ6c5tu2F8MTU1MDkzOTI2NUAxNTUwODUyODY1> and i
February 22, 2019 at 07:35PM by Ivan Mojica
https://ift.tt/2T9xShr
New post on /r/flutterdev subreddit:
When is the next stable release planned for?
So many new releases here https://github.com/flutter/flutter/wiki/Changelog but none seem to be pushed to stable since v1.0. Do we need to work on dev Branch to get access to these new features?
February 22, 2019 at 07:32PM by flashaintdead
https://ift.tt/2VcAXuH
When is the next stable release planned for?
So many new releases here https://github.com/flutter/flutter/wiki/Changelog but none seem to be pushed to stable since v1.0. Do we need to work on dev Branch to get access to these new features?
February 22, 2019 at 07:32PM by flashaintdead
https://ift.tt/2VcAXuH
GitHub
Changelog
Flutter makes it easy and fast to build beautiful mobile apps. - flutter/flutter
New post on Flutter Dev Google group:
Flutter Youtube Channel!
Happy Friday Flutter devs! I have great news to share! Flutter has its own Youtube channel, you will get to see great Flutter videos as well as so many community members there, don't forget to subscribe! https://ift.tt/2T8HVU6 🎉
February 22, 2019 at 08:21PM by Nilay Yener
https://ift.tt/2Iyi1oD
Flutter Youtube Channel!
Happy Friday Flutter devs! I have great news to share! Flutter has its own Youtube channel, you will get to see great Flutter videos as well as so many community members there, don't forget to subscribe! https://ift.tt/2T8HVU6 🎉
February 22, 2019 at 08:21PM by Nilay Yener
https://ift.tt/2Iyi1oD
YouTube
Flutter
Welcome to the official Flutter YouTube channel. Subscribe to stay up to date with best practices about the Flutter SDK. See real code examples, and watch en...
New post on /r/flutterdev subreddit:
GitLab CI exmaple
hi do we have good exmple of CI flutter build ?is below good to take ..# A functional, but probably terrible, example of GitLab CI for Flutter
image: cirrusci/flutterbefore_script:
- flutter doctor
- flutter channel stable
- flutter packages getstages:
- test
- buildunitTests:
stage: test
script:
- flutter test test/widget_test.dartbuild:
stage: build
script:
- flutter build apk
artifacts:
when: on_success
paths:
- build/app/outputs/apk/release/app-release.apk
February 22, 2019 at 08:30PM by Kotaibaw
https://ift.tt/2SRUkfG
GitLab CI exmaple
hi do we have good exmple of CI flutter build ?is below good to take ..# A functional, but probably terrible, example of GitLab CI for Flutter
image: cirrusci/flutterbefore_script:
- flutter doctor
- flutter channel stable
- flutter packages getstages:
- test
- buildunitTests:
stage: test
script:
- flutter test test/widget_test.dartbuild:
stage: build
script:
- flutter build apk
artifacts:
when: on_success
paths:
- build/app/outputs/apk/release/app-release.apk
February 22, 2019 at 08:30PM by Kotaibaw
https://ift.tt/2SRUkfG
reddit
r/FlutterDev - GitLab CI exmaple
0 votes and 0 comments so far on Reddit
New post on Flutter Dev Google group:
Flutter Create - Code readability
Hi I've shared the Flutter Create initiative with some people and the general feedback is quite exciting. Some people asked me a question that I share here, because after looking at the rules I have not find an exact answer. How readable should the code be? Being size a limit, minimizing code
February 22, 2019 at 09:12PM by Sergi Martínez
https://ift.tt/2Is9xiH
Flutter Create - Code readability
Hi I've shared the Flutter Create initiative with some people and the general feedback is quite exciting. Some people asked me a question that I share here, because after looking at the rules I have not find an exact answer. How readable should the code be? Being size a limit, minimizing code
February 22, 2019 at 09:12PM by Sergi Martínez
https://ift.tt/2Is9xiH
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New post on /r/flutterdev subreddit:
The Flutter YouTube Channel is Here!
https://m.youtube.com/watch?v=sPW7nDBqt8w&feature=youtu.be
February 22, 2019 at 09:47PM by Purple_Pizzazz
https://ift.tt/2NqdGTu
The Flutter YouTube Channel is Here!
https://m.youtube.com/watch?v=sPW7nDBqt8w&feature=youtu.be
February 22, 2019 at 09:47PM by Purple_Pizzazz
https://ift.tt/2NqdGTu
YouTube
The Flutter YouTube Channel is Here!
Welcome to the Flutter YouTube channel! We have a full lineup of shows that cover the ins and outs of building apps with Flutter. Our best practices show you...
New post on /r/flutterdev subreddit:
Why isn't onTap() being called?
Hey guys, I'm having an issue where the ListTile method onTap() is not being called.Here I have some simple code that you can copy and paste to replicate the problem? Any ideas on howto make the ListTile call onTap() ?
February 22, 2019 at 09:46PM by zapoJMR
https://ift.tt/2GFJrY3
Why isn't onTap() being called?
Hey guys, I'm having an issue where the ListTile method onTap() is not being called.Here I have some simple code that you can copy and paste to replicate the problem? Any ideas on howto make the ListTile call onTap() ?
import 'package:flutter/material.dart'; void main() { runApp( MaterialApp( debugShowCheckedModeBanner: false, home: Scaffold( body: MyList(), ) ), ); } class MyList extends StatelessWidget { @override Widget build(BuildContext context) { return ListWheelScrollView( children: <Widget>[ carMenuItem, boatMenuItem, ], itemExtent: 80, ); } } Widget carMenuItem = Container( child: ListTile( enabled: true, onTap: () { print('Hello World'); }, leading: CircleAvatar( radius: 30, backgroundColor: Color.fromRGBO(232, 93, 117, 1), child: Icon( Icons.directions_car, color: Colors.white, ), ), title: Text( 'Car', style: TextStyle( fontFamily: 'Copperplate', fontSize: 30, ), ), ), ); Widget boatMenuItem = Container( child: ListTile( enabled: true, onTap: () { print('Hello World'); }, leading: CircleAvatar( radius: 30, backgroundColor: Color.fromRGBO(232, 93, 117, 1), child: Icon( Icons.directions_boat, color: Colors.white, ), ), title: Text( 'boat', style: TextStyle( fontFamily: 'Copperplate', fontSize: 30, ), ), ), );
February 22, 2019 at 09:46PM by zapoJMR
https://ift.tt/2GFJrY3
reddit
r/FlutterDev - Why isn't onTap() being called?
0 votes and 0 comments so far on Reddit
New post on Flutter Dev Google group:
Triggers tips with firebase
Hi people, I have two apps developed with flutter. The first application has the functions of 'pause', 'resume' and 'stop' a certain process, so, i write registers in firebase realtime database with this format. [image: json example.png] The second application is where the certain process is
February 22, 2019 at 11:29PM by Misael Astorga
https://ift.tt/2NmBS97
Triggers tips with firebase
Hi people, I have two apps developed with flutter. The first application has the functions of 'pause', 'resume' and 'stop' a certain process, so, i write registers in firebase realtime database with this format. [image: json example.png] The second application is where the certain process is
February 22, 2019 at 11:29PM by Misael Astorga
https://ift.tt/2NmBS97
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.