New post on /r/flutterdev subreddit:
Build A Flutter 💙 Tinder Clone with Firebase & BLoC #40/41 Message Widget
https://youtu.be/9JdbaLh4wXg
August 28, 2020 at 01:33PM by 26Waga
https://ift.tt/34EUxHN
Build A Flutter 💙 Tinder Clone with Firebase & BLoC #40/41 Message Widget
https://youtu.be/9JdbaLh4wXg
August 28, 2020 at 01:33PM by 26Waga
https://ift.tt/34EUxHN
YouTube
Build Flutter Tinder Clone with Firebase & BLoC #40/41 Message Widget
Build a Flutter Tinder Clone with Firebase and BLoC. In this video we build the Message Widget
New post on /r/flutterdev subreddit:
Coding Best Practices for Flutter
https://youtu.be/7dGfe8eJDSU
August 28, 2020 at 01:26PM by immacoder
https://ift.tt/3bcflYE
Coding Best Practices for Flutter
https://youtu.be/7dGfe8eJDSU
August 28, 2020 at 01:26PM by immacoder
https://ift.tt/3bcflYE
YouTube
Coding Best Practices
Coding Best PracticesMostly for OOP and Flutter! There are a lot of coding best practices out there but I wanted to cover the ones that impact how I work the...
New post on /r/flutterdev subreddit:
Awesome interactive charts in Flutter!
https://www.youtube.com/watch?v=s-N8Df_gByY
August 28, 2020 at 02:38PM by beingonearth
https://ift.tt/3gJd1tm
Awesome interactive charts in Flutter!
https://www.youtube.com/watch?v=s-N8Df_gByY
August 28, 2020 at 02:38PM by beingonearth
https://ift.tt/3gJd1tm
YouTube
Data Visualization in Flutter - Add Interactive Charts
Add interactive charts in Flutter like a PRO!
After completing this video you can add Bar Charts, Pie Charts, and Line Charts easily in your Flutter Projects.
Don't forget to Like, Share, and Subscribe.
Fitness App Tutorial: https://www.youtube.com/wa…
After completing this video you can add Bar Charts, Pie Charts, and Line Charts easily in your Flutter Projects.
Don't forget to Like, Share, and Subscribe.
Fitness App Tutorial: https://www.youtube.com/wa…
New post on /r/flutterdev subreddit:
<b>Top 10 Flutter Libraries And Plugins To Use In 2020</b>
Open-source has changed the manner in which software is written and distributed. It has played a significant role in making software development simple, fun and more approachable. Flutter is an open-source cross-platform mobile app development platform having a wide developer’s community that puts efforts to make it successful. Mobile application developer community grasped Flutter so rapidly that there are a lot of open-source packages for it in an extremely short timespan.Libraries and packages reduce the time required for development as developers don’t need to develop from scratch for trivial functionalities. Use of right packages eases the things like HTTP calls and image caching. Here we’ll see top 10 libraries and packages for <a href="https://solaceinfotech.com/blog/flutter-in-mobile-app-development/">flutter app development</a>. Top 10 Libraries For Flutter Development-1. GetIt-It is one of the most preferred and useful Flutter libraries that implements the service locator pattern and makes dependency injection breeze. Also it is necessary to follow a fixed pattern and also run through the same package frequently to make it unique, and the software does not get confused with file segregation.Most Common Usage:To access service objects like REST API clients, databasesAccess View/AppModels/Managers/BLoCs from Flutter Views2. rxdart-It is a reactive functional programming library for Google Dart based on ReactiveX. Google Dart has come up with amazing Streams API to provide alternative API to add ExDart functionality on top of it.How to use RxDart-<pre>import 'package:rxdart/rxdart.dart'; void main() { const konamiKeyCodes = const [ KeyCode.UP, KeyCode.UP, KeyCode.DOWN, KeyCode.DOWN, KeyCode.LEFT, KeyCode.RIGHT, KeyCode.LEFT, KeyCode.RIGHT, KeyCode.B, KeyCode.A, ]; final result = querySelector('#result'); document.onKeyUp .map((event) => event.keyCode) .bufferCount(10, 1) // An extension method provided by rxdart .where((lastTenKeyCodes) => const IterableEquality().equals(lastTenKeyCodes, konamiKeyCodes)) .listen((_) => result.innerHtml = 'KONAMI!'); </pre>3. URL Launcher-It helps to add plugin to every page. While building up a website or program there are some predefined schemas that perform various functions through it in a mobile software that is activated by ios and android too. These codes help to operate the page through a programming language. It is more useful when you want the OS to handle the URL for you. It supports multiple URL schemas like HTTP, mailto, SMS and so on.4. package_info-Package info plugin is used to fetch the data about the application’s version and other related things. This package is useful to check the app’s version at runtime and perform some tasks accordingly.Usage-<pre>import 'package:package_info/package_info.dart'; PackageInfo packageInfo = await PackageInfo.fromPlatform(); String appName = packageInfo.appName; String packageName = packageInfo.packageName; String version = packageInfo.version; String buildNumber = packageInfo.buildNumber; </pre>5. Cached network image-This flutter library helps to save the image information in the cache when it is viewed on the Internet from your device. It is created to use with placeholder and error widgets. It comes with sane-defaults along with many customization options so that you can start to use it right away. It is highly recommended for building eCommerce and similar apps.How to use-The CachedNetworkImage can be used directly or through the ImageProvider. With a placeholder.<pre>CachedNetworkImage( imageUrl: "http://via.placeholder.com/350x150"' placeholder: (context, url) => CircularProgressIndicator(), errorWidget: (context, url, error) => Icon(Icons.error), ), </pre>6. LocalAuth-It provides ways to perform local and on-device authentication. These authentication methods refer to biometric authentication i.e. Touch ID APIs for iOS and fingerprint…
<b>Top 10 Flutter Libraries And Plugins To Use In 2020</b>
Open-source has changed the manner in which software is written and distributed. It has played a significant role in making software development simple, fun and more approachable. Flutter is an open-source cross-platform mobile app development platform having a wide developer’s community that puts efforts to make it successful. Mobile application developer community grasped Flutter so rapidly that there are a lot of open-source packages for it in an extremely short timespan.Libraries and packages reduce the time required for development as developers don’t need to develop from scratch for trivial functionalities. Use of right packages eases the things like HTTP calls and image caching. Here we’ll see top 10 libraries and packages for <a href="https://solaceinfotech.com/blog/flutter-in-mobile-app-development/">flutter app development</a>. Top 10 Libraries For Flutter Development-1. GetIt-It is one of the most preferred and useful Flutter libraries that implements the service locator pattern and makes dependency injection breeze. Also it is necessary to follow a fixed pattern and also run through the same package frequently to make it unique, and the software does not get confused with file segregation.Most Common Usage:To access service objects like REST API clients, databasesAccess View/AppModels/Managers/BLoCs from Flutter Views2. rxdart-It is a reactive functional programming library for Google Dart based on ReactiveX. Google Dart has come up with amazing Streams API to provide alternative API to add ExDart functionality on top of it.How to use RxDart-<pre>import 'package:rxdart/rxdart.dart'; void main() { const konamiKeyCodes = const [ KeyCode.UP, KeyCode.UP, KeyCode.DOWN, KeyCode.DOWN, KeyCode.LEFT, KeyCode.RIGHT, KeyCode.LEFT, KeyCode.RIGHT, KeyCode.B, KeyCode.A, ]; final result = querySelector('#result'); document.onKeyUp .map((event) => event.keyCode) .bufferCount(10, 1) // An extension method provided by rxdart .where((lastTenKeyCodes) => const IterableEquality().equals(lastTenKeyCodes, konamiKeyCodes)) .listen((_) => result.innerHtml = 'KONAMI!'); </pre>3. URL Launcher-It helps to add plugin to every page. While building up a website or program there are some predefined schemas that perform various functions through it in a mobile software that is activated by ios and android too. These codes help to operate the page through a programming language. It is more useful when you want the OS to handle the URL for you. It supports multiple URL schemas like HTTP, mailto, SMS and so on.4. package_info-Package info plugin is used to fetch the data about the application’s version and other related things. This package is useful to check the app’s version at runtime and perform some tasks accordingly.Usage-<pre>import 'package:package_info/package_info.dart'; PackageInfo packageInfo = await PackageInfo.fromPlatform(); String appName = packageInfo.appName; String packageName = packageInfo.packageName; String version = packageInfo.version; String buildNumber = packageInfo.buildNumber; </pre>5. Cached network image-This flutter library helps to save the image information in the cache when it is viewed on the Internet from your device. It is created to use with placeholder and error widgets. It comes with sane-defaults along with many customization options so that you can start to use it right away. It is highly recommended for building eCommerce and similar apps.How to use-The CachedNetworkImage can be used directly or through the ImageProvider. With a placeholder.<pre>CachedNetworkImage( imageUrl: "http://via.placeholder.com/350x150"' placeholder: (context, url) => CircularProgressIndicator(), errorWidget: (context, url, error) => Icon(Icons.error), ), </pre>6. LocalAuth-It provides ways to perform local and on-device authentication. These authentication methods refer to biometric authentication i.e. Touch ID APIs for iOS and fingerprint…
New post on /r/flutterdev subreddit:
For anyone looking to implement PNs using Firebase
https://ift.tt/3b26KHS
August 28, 2020 at 04:31PM by ayusch
https://ift.tt/3hD9Y7b
For anyone looking to implement PNs using Firebase
https://ift.tt/3b26KHS
August 28, 2020 at 04:31PM by ayusch
https://ift.tt/3hD9Y7b
AndroidVille
Implementing Flutter Push Notification using Firebase
In this flutter push notification tutorial, we’ll be taking a look at how to use
New post on /r/flutterdev subreddit:
How to make a platform game using flame package?
Does anyone know if is there a tutorial (video/text) using flame package with how to make a platform game? Explaining about how to build stages, how to work with the camera, create and move the characters, collision, etc?https://pub.dev/packages/flame
August 28, 2020 at 04:30PM by D_apps
https://ift.tt/2ED1q1E
How to make a platform game using flame package?
Does anyone know if is there a tutorial (video/text) using flame package with how to make a platform game? Explaining about how to build stages, how to work with the camera, create and move the characters, collision, etc?https://pub.dev/packages/flame
August 28, 2020 at 04:30PM by D_apps
https://ift.tt/2ED1q1E
Dart packages
flame | Flutter package
A minimalist Flutter game engine, provides a nice set of somewhat independent modules you can choose from.
New post on /r/flutterdev subreddit:
Uploading Files with Flutter
Uploading images to our application is one of the most important actions nowadays, every day we share files with friends and like to share the content with everyone.We have created a tutorial to Upload files using Flutterhttps://medium.com/@andrepasr16/uploading-files-using-flutter-9415cd7524b1#flutter #mobile #ios #android
August 28, 2020 at 05:11PM by olympikesoft
https://ift.tt/3hDHt9o
Uploading Files with Flutter
Uploading images to our application is one of the most important actions nowadays, every day we share files with friends and like to share the content with everyone.We have created a tutorial to Upload files using Flutterhttps://medium.com/@andrepasr16/uploading-files-using-flutter-9415cd7524b1#flutter #mobile #ios #android
August 28, 2020 at 05:11PM by olympikesoft
https://ift.tt/3hDHt9o
Medium
Uploading Files using Flutter
Uploading images to our application is one of the most important actions nowadays, every day we share files with friends and like to share…
New post on /r/flutterdev subreddit:
Analog Clock Light & Dark Theme - Flutter UI
https://youtu.be/u6Cfzng3Gek
August 28, 2020 at 05:24PM by anwarabir
https://ift.tt/3b5eicG
Analog Clock Light & Dark Theme - Flutter UI
https://youtu.be/u6Cfzng3Gek
August 28, 2020 at 05:24PM by anwarabir
https://ift.tt/3b5eicG
YouTube
Analog Clock Light & Dark Theme - Flutter UI - Speed Code
We design a nice clean analog clock app UI by using flutter. Our clock supports both the Dark and Light theme. If you want to learn how to use both Light and Dark theme then it helps a lot.
►Starting Code: https://bit.ly/34Ibhhs
►Source Code: https://…
►Starting Code: https://bit.ly/34Ibhhs
►Source Code: https://…
New tweet from FlutterDev:
✅ This #FlutterFriday learn how to up your static checking game!
Want more static checking than Dart provides by default? Use package:meta and its annotations like @ required, @ visibleForTesting or @ immutable.
Learn more → https://t.co/EdiGlM0KUn pic.twitter.com/YGY7NPdoh7— Flutter (@FlutterDev) August 28, 2020
August 28, 2020 at 05:59PM
http://twitter.com/FlutterDev/status/1299376147847770115
✅ This #FlutterFriday learn how to up your static checking game!
Want more static checking than Dart provides by default? Use package:meta and its annotations like @ required, @ visibleForTesting or @ immutable.
Learn more → https://t.co/EdiGlM0KUn pic.twitter.com/YGY7NPdoh7— Flutter (@FlutterDev) August 28, 2020
August 28, 2020 at 05:59PM
http://twitter.com/FlutterDev/status/1299376147847770115
Twitter
#flutterfriday hashtag on Twitter
35m ago @FlutterDev tweeted: "✳️ Early access to features like HotUI a.." - read what others are saying and join the conversation.
New post on Flutter Dev Google group:
Starting with Flutter Help
Hi all I am new to flutter, I am currently taking a udemy course to develop applications with Fluter, I have started to install FLutter and the emulators in Macos High sierra Version 10.13.6 the version of xcode 10.1 which from what I have read is the only one that it can work correctly and I
August 28, 2020 at 06:37PM by Eduardo Butrón
https://ift.tt/2D6wiH9
Starting with Flutter Help
Hi all I am new to flutter, I am currently taking a udemy course to develop applications with Fluter, I have started to install FLutter and the emulators in Macos High sierra Version 10.13.6 the version of xcode 10.1 which from what I have read is the only one that it can work correctly and I
August 28, 2020 at 06:37PM by Eduardo Butrón
https://ift.tt/2D6wiH9
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 Flutter Dev Google group:
Running a golang web server from a flutter app
Hi, I know I can use go-mobile and bind in a golang .aar as a library with some extra work. However a golang binary can be executed on more platforms than Dart supports. On desktop platforms that aren't expected to be supported any time soon, a golang binary can run a flutter for web app
August 28, 2020 at 06:45PM by Kevin Chadwick
https://ift.tt/2G86YBV
Running a golang web server from a flutter app
Hi, I know I can use go-mobile and bind in a golang .aar as a library with some extra work. However a golang binary can be executed on more platforms than Dart supports. On desktop platforms that aren't expected to be supported any time soon, a golang binary can run a flutter for web app
August 28, 2020 at 06:45PM by Kevin Chadwick
https://ift.tt/2G86YBV
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:
Flutter: How To Use RawKeyboardListener Widget
https://ift.tt/3jAZvKb
August 28, 2020 at 07:41PM by trapeye
https://ift.tt/2QCaYfG
Flutter: How To Use RawKeyboardListener Widget
https://ift.tt/3jAZvKb
August 28, 2020 at 07:41PM by trapeye
https://ift.tt/2QCaYfG
Medium
Flutter: How To Use RawKeyboardListener Widget
I make this article for me if I forgot how to use this Widget. For more detail check out the documentation from a flutter.
New post on /r/flutterdev subreddit:
Interested in applying and learning Flutter for our university senior project. Torn between React Native and Flutter.
Our senior project group is interested in using either React Native or Flutter to create mobile applications. To provide background, we're all experienced Java developers; Python is another language we all have in common.A few group members don't feel comfortable with Swift, which is why we're looking for alternatives. We'll be collecting data from OpenCV/Tensor Flow using Python, storing the data on a database, and displaying the data on a mobile application.We're looking for a language that is easy to pick up and learn based on our prior coding background. Being able to easily create a friendly UI is what we're looking for.Is Flutter a good choice, or should we look at React Native?
August 28, 2020 at 08:14PM by theofficialtaha
https://ift.tt/32y158B
Interested in applying and learning Flutter for our university senior project. Torn between React Native and Flutter.
Our senior project group is interested in using either React Native or Flutter to create mobile applications. To provide background, we're all experienced Java developers; Python is another language we all have in common.A few group members don't feel comfortable with Swift, which is why we're looking for alternatives. We'll be collecting data from OpenCV/Tensor Flow using Python, storing the data on a database, and displaying the data on a mobile application.We're looking for a language that is easy to pick up and learn based on our prior coding background. Being able to easily create a friendly UI is what we're looking for.Is Flutter a good choice, or should we look at React Native?
August 28, 2020 at 08:14PM by theofficialtaha
https://ift.tt/32y158B
reddit
Interested in applying and learning Flutter for our university...
Our senior project group is interested in using either React Native or Flutter to create mobile applications. To provide background, we're all...
New post on /r/flutterdev subreddit:
Trailing commas in VSC?
I've looked everywhere and hate coming here to ask. But does anyone here use Visual Studio Code and know how to get it to autoformat dart/flutter files to use trailing commas? Thanks.
August 28, 2020 at 10:32PM by AwGe3zeRick
https://ift.tt/3b3E4yf
Trailing commas in VSC?
I've looked everywhere and hate coming here to ask. But does anyone here use Visual Studio Code and know how to get it to autoformat dart/flutter files to use trailing commas? Thanks.
August 28, 2020 at 10:32PM by AwGe3zeRick
https://ift.tt/3b3E4yf
reddit
Trailing commas in VSC?
I've looked everywhere and hate coming here to ask. But does anyone here use Visual Studio Code and know how to get it to autoformat dart/flutter...
New post on /r/flutterdev subreddit:
Flutter payment gateway!
What is the better payment gateway, to allow credit card shopping.Stripe not work in my country.Braintree not work neither.PayPal ( it’s nonsense Pay with a payola account)square app ( not work in my country). Some alternative working on Latin America?
August 29, 2020 at 12:54AM by Appropriate-Ad-3865
https://ift.tt/2D86SsK
Flutter payment gateway!
What is the better payment gateway, to allow credit card shopping.Stripe not work in my country.Braintree not work neither.PayPal ( it’s nonsense Pay with a payola account)square app ( not work in my country). Some alternative working on Latin America?
August 29, 2020 at 12:54AM by Appropriate-Ad-3865
https://ift.tt/2D86SsK
reddit
Flutter payment gateway!
What is the better payment gateway, to allow credit card shopping. - Stripe not work in my country. - Braintree not work neither. - PayPal ( it’s...
New post on /r/flutterdev subreddit:
Flutter team really need to fix on poor scrolling performance
It's mind boggling that simple things like scrolling through a listview becomes laggy and it doesnt feel native at all. I have an app on google playstore which I have migrated from native android. Some of my existing users are moving to competitor app because they cant stand the poor scrolling performance. It is not laggy but it doesnt feel smooth and native especially on 120hz screens.This happens when u have a variable height for each of your list item and you did not provide a fixed item extent. Its normal to have flexible height for each of your list item, apps like facebook and reddit has it depending on size of the content.This issue has been around ever since flutter was introduced on mobile and its even worse on the web now.Some examples of github issues raised on these:https://github.com/flutter/flutter/issues/52207https://github.com/flutter/flutter/issues/62796https://github.com/flutter/flutter/issues/51401
August 29, 2020 at 03:46AM by bluemarsyt
https://ift.tt/3lt1vpg
Flutter team really need to fix on poor scrolling performance
It's mind boggling that simple things like scrolling through a listview becomes laggy and it doesnt feel native at all. I have an app on google playstore which I have migrated from native android. Some of my existing users are moving to competitor app because they cant stand the poor scrolling performance. It is not laggy but it doesnt feel smooth and native especially on 120hz screens.This happens when u have a variable height for each of your list item and you did not provide a fixed item extent. Its normal to have flexible height for each of your list item, apps like facebook and reddit has it depending on size of the content.This issue has been around ever since flutter was introduced on mobile and its even worse on the web now.Some examples of github issues raised on these:https://github.com/flutter/flutter/issues/52207https://github.com/flutter/flutter/issues/62796https://github.com/flutter/flutter/issues/51401
August 29, 2020 at 03:46AM by bluemarsyt
https://ift.tt/3lt1vpg
GitHub
ListView: Poor performance with many variable-extent items + jumpTo (scroll bar, trackpad, mouse wheels) · Issue #52207 · flutter/flutter
Related: #153085 Update September 2023: New SliverVariedExtentList, ListView.extentBuilder for dynamic child sizing on demand #131393 New caching proposal, follow for updates: #134864 Update from J...
New post on /r/flutterdev subreddit:
Flutter News App (Frontend To Backend) Part 4 - XML Data Parsing
https://youtu.be/qzM7zIIeH8Y
August 29, 2020 at 05:31AM by No-Science-6310
https://ift.tt/32y77WR
Flutter News App (Frontend To Backend) Part 4 - XML Data Parsing
https://youtu.be/qzM7zIIeH8Y
August 29, 2020 at 05:31AM by No-Science-6310
https://ift.tt/32y77WR
YouTube
Flutter News App (Frontend To Backend) Part 4 - XML Data Parsing
Hello guys, this video is a part of a flutter series we are started to upload on YouTube.
Flutter News App (Frontend to Backend)
In this video we will be watching, how to parse XML/RSS Data in Flutter
Type a message
📝Blog for this video: https://dev.to…
Flutter News App (Frontend to Backend)
In this video we will be watching, how to parse XML/RSS Data in Flutter
Type a message
📝Blog for this video: https://dev.to…
New post on Flutter Dev Google group:
Operator name and meaning
hello guys, Please tell me about the operator used in the image? " ?? " 1.When to use? 2.How to Use? 3.some examples!
August 29, 2020 at 06:27AM by Gulam Fahad Ahmed
https://ift.tt/3jnCREQ
Operator name and meaning
hello guys, Please tell me about the operator used in the image? " ?? " 1.When to use? 2.How to Use? 3.some examples!
August 29, 2020 at 06:27AM by Gulam Fahad Ahmed
https://ift.tt/3jnCREQ
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 Flutter Dev Google group:
when to use super key in flutter?
hello guys, Please tell me about when to use super(key : key); 1. About it? 2. When to use or when not to use?
August 29, 2020 at 06:35AM by Gulam Fahad Ahmed
https://ift.tt/2QBZzNg
when to use super key in flutter?
hello guys, Please tell me about when to use super(key : key); 1. About it? 2. When to use or when not to use?
August 29, 2020 at 06:35AM by Gulam Fahad Ahmed
https://ift.tt/2QBZzNg
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:
How to upload images from gallery 😁️ So much hard work hope you like it!
https://www.youtube.com/watch?v=i8cK1bGLqP8
August 29, 2020 at 09:07AM by priiimo3
https://ift.tt/2YKvbVr
How to upload images from gallery 😁️ So much hard work hope you like it!
https://www.youtube.com/watch?v=i8cK1bGLqP8
August 29, 2020 at 09:07AM by priiimo3
https://ift.tt/2YKvbVr
YouTube
Flutter upload images from gallery | Learning Everyday Series Ep. 1
You prefer written? https://priiimo.com/en/computer-science/tutorials/flutter-how-to-upload-image-from-gallery-with-flutter/5f491bc2e81f0063f61885d1
00:00 Welcome
00:13 Intro
00:17 Add Image Picker package to pubspec.yaml
00:26 Import dart:io package and…
00:00 Welcome
00:13 Intro
00:17 Add Image Picker package to pubspec.yaml
00:26 Import dart:io package and…
New post on /r/flutterdev subreddit:
How can I change appearance of navigation bar.
Hi, I have recently discovered that in some phones there is navigation bar like in the picture.https://imgur.com/a/JHlH4j8Top bar with wi-fi, battery % and clock change color or even a background image as main app screen automatically (this, is downloading data screen, later top bar background looks the same). It's seams as its not separate part of the app.How can I change look of the bottom navigation bar? Color or background?
Have a nice day everyone!
August 29, 2020 at 12:13PM by mati_to_przechuj
https://ift.tt/3gD6MXN
How can I change appearance of navigation bar.
Hi, I have recently discovered that in some phones there is navigation bar like in the picture.https://imgur.com/a/JHlH4j8Top bar with wi-fi, battery % and clock change color or even a background image as main app screen automatically (this, is downloading data screen, later top bar background looks the same). It's seams as its not separate part of the app.How can I change look of the bottom navigation bar? Color or background?
Have a nice day everyone!
August 29, 2020 at 12:13PM by mati_to_przechuj
https://ift.tt/3gD6MXN
Imgur
This is the problem
Post with 92 views. This is the problem