Compress Image With Show File Size & Resolution 1.Multiple File Image Compress with file Sizeimport 'dart:io';import 'package:flutter/cupertino.dart';import 'package:flutter/material.dart';import 'package:image_picker/image_picker.dart';import 'package:imagecompressorandresizer/utils/color.dart';class CompressPage extends StatefulWidget { const CompressPage({super.key}); @override State<CompressPage> createState() => _CompressPageState();}class...
Thursday, April 25, 2024
Tags
# UI
Continue Reading
ClipPath With CustomClipper in Flutter
Avinash Developer
April 25, 2024
0
ClipPath With CustomClipper in Flutter 1 . Use HereClipPath( clipper: ClipsClipper(), child: Container( height: size.height / 2, color: Colors.red, ),), 1 . Use Here with BorderStack( children: [ Opacity( opacity: 0.5, child: ClipPath( clipper: ClipsClipper(), child: Container( height: size.height / 2, color: Colors.red, ), ), ), ClipPath( clipper: ClipsClipper(),...
Tags
# UI
Continue Reading
Tuesday, April 16, 2024
Google_Sign_In Package in Flutter
Avinash Developer
April 16, 2024
0
Google Sign InFlutter PackageProcess - I Package install : - firebase_auth / firebase_core / google_sign_inProcess -II Create GoogleSignIn Classimport 'package:google_sign_in/google_sign_in.dart';import 'package:firebase_auth/firebase_auth.dart';class GoogleSignInClass{ static final...
Sunday, April 14, 2024
Privecy Policy for Maya Weather App
Avinash Developer
April 14, 2024
0
Privacy Policy
Last updated: April 14, 2024
This Privacy Policy describes Our policies and procedures on
the collection, use and disclosure of Your information when You use the Service
and tells You about Your privacy rights and how the law protects You.
We use Your Personal data to provide and improve the
Service. By using the Service, You agree to the collection and use of
information in accordance with this Privacy Policy. This Privacy Policy has
been...
Tags
Continue Reading
Saturday, April 13, 2024
Glass Morphism in Flutter
Avinash Developer
April 13, 2024
0
Glass Morphism in FlutterProcess:- Container( ClipRRect( BackdropFilter( ...
Tags
# UI
Continue Reading
Friday, April 12, 2024
Get X State Manager OverAll
Avinash Developer
April 12, 2024
0
Get X State Manager OverAll 1. Routing Named Un-Named 2. Dependency Get.put/find/create/lazyput/putAsync 3. State Management ...
Tags
# GET X
Continue Reading
Featured post
Compress Image With Show File Size & Resolution in Flutter
Compress Image With Show File Size & Resolution 1.Multiple File Image Compress with file Size import 'dart:io' ; import 'p...