Posts

Showing posts from February, 2019

Multi Image Picker In Flutter || Amazevalley

Image
In this tutorial you will learn how to pick multiple images in flutter using  plugin  multi_image_picker 3.0.14 Using this plugin you can  Pick multiple images Instantly pick thousands of images at once, without any delay or blocking the UI thread. Native performance The plugin takes advantage of the two best image picking libraries for Android and iOS, bringing you the best native platform experience. Photos sorted by albums Take a picture option in the grid view Restrict the maximum count of images the user can pick Customizable UI and localizations Thumbnail support Specify the image quality of the original image or thumbnails Read image meta data DEMO : Have Look on the main.dart ---- import 'package:flutter/material.dart' ; import 'dart:async' ; import 'package:flutter/services.dart' ; import 'package:multi_image_picker/multi_image_picker.dart' ; import 'view.dart' ; void main () => runApp( new MyApp

Flip Card in Flutter || Amazevalley

Image
Flip Card is a component that provides you flip animation on the card it's used to hide and show the details of the card or you can say that displaying multi info at same place. Explore at Flip Card import 'package:flutter/material.dart'; import 'package:flip_card/flip_card.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( home: MyHomePage(), debugShowCheckedModeBanner: false, ); } } class MyHomePage extends StatefulWidget { @override _MyHomePageState createState() => _MyHomePageState(); } class _MyHomePageState extends State { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text('Flip Card In Flutter Demo'), ), body: ListView( children: [ Container( width: MediaQuery.of(context).size.wid

Image Picker In Flutter || Amazevalley

Image
In this tutorial you will learn how to pick the image from gallery and capture from camera in flutter. You can explore more it on  image_picker  . Let take a look on the code first of all we will write the function for gallery Demo : import 'dart:async' ; import 'dart:io' ; import 'package:flutter/material. dart' ; import 'package:image_picker/image_ picker.dart' ; void main () { runApp( MyApp ()) ; } class MyApp extends StatelessWidget { @override Widget build (BuildContext context) { return MaterialApp ( title: 'Image Picker Demo' , home: MyHomePage (title: 'Image Picker Example' ) , debugShowCheckedModeBanner: false , ) ; } } class MyHomePage extends StatefulWidget { MyHomePage({Key key , this . title }) : super (key: key) ; final String title ; @override _MyHomePageState createState () => _MyHomePageState () ; } class _MyHomePageState extends State<MyHomePage> {