Flutter Heroes
25.8K subscribers
272 photos
2 videos
31.1K links
Download Telegram
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
New post on /r/flutterdev subreddit:

code magic ios publish
hi, while running build i see below issue​Failed 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
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
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
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
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
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 &darr; pic.twitter.com/I2vIHiJtS9— Flutter (@flutterio) February 22, 2019

February 22, 2019 at 07:00PM
http://twitter.com/flutterio/status/1099005905234841600
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 &rarr; 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
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
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
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
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() ?​
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
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