Giter VIP home page Giter VIP logo

shoppers's Introduction

Flutter E-Commerce App using Firebase, Razorpay and Stripe

Shoppers

If you haven't purchased then please buy it now - https://1.envato.market/07QmM

Join Our Slack and Github if you have purchased the product

Introduction

Shoppers is an eCommerce app inspired by Flutter framerwork, made by Google. With the mission of reducing 100+ hours of business spent on designing, developing and testing a mobile app, Shoppers comes as a complete solution for optimizing to deliver your app to the market with high productivity and cost-efficiency. It could be able to satisfy all of the business requirements including e-commerce functionalities, impressive UX design and smooth performance on both iOS and Android devices. The download package is included the full source code and many related resources (designs, documents, videos…) that help you install in the smoothest way.

Either you are business people with raising sale ambition or developers with faster mobile application creation need, Shoppers provides you solutions. Faster- Smoother- Closer.

Features

  • Easy to use.

  • Sign In and Sign Up with Email

  • Sign In with Facebook

  • Sign In with Google

  • Flutter firebase phone authentication (Test: +919852954321, CODE: 333333)

  • Push notification

  • Clean Code And Well Documented.

  • Bloc pattern

  • Custom Carousel Slider

  • Easy setup

  • Form Validation

  • Change app icon easily

  • Onboarding screens

  • Admin dashboard

  • Role management

  • Stripe payment gateway

  • Razorpay payment gateway

  • Full e-commerce features – Dynamic Product variants, checkout process, order tracking, order notes, wishlist, manage address.

  • Great UX design multi-level categories, quick product filter, super smooth checkout flow, searching keyword history…

  • Flexible Design System – easy to config the logo and style.

  • Powerful User Setting – the ability to enable the push notification, view wishlist, order history.

  • Push notification

  • Offline Images Caching – speed up the loading performance with caching image offline method.

  • Realtime

  • 60 frames per second (fps) app – working really well on both iOS and Android with support with

What will you get?

  • Full Dart source code
  • Free version upgrade
  • Free Video tourtial, please subscribe

Thank You

Thank you for purchasing Shoppers – Flutter E-Commerce App using Firebase and Stripe. If you have any questions that are beyond the scope of this help file, please feel free to create an issue here. Thanks so much!

Installation

We believe you have installed flutter in your system if not then install flutter

Use stable version of flutter.

flutter channel stable
flutter upgrade

Quickstart

flutter run

Customization

1. App name/icon, Bundle ID

1.1 Change the app name:

IOS app:

  • Open ios/Runnder/Info.plist and replace the Shoppers by your App Name
<key>CFBundleDisplayName</key>
	<string>your-preffered-name</string>
  • Make sure to clean up the cache by running following scipt to clean the previous cache
flutter clean
flutter build ios

It's possible to change via XCode - https://i.imgur.com/HQCNxUT.png The facebook app name and App ID could be change from this file as well

Android app:

  • open android/app/main/res/values/strings.xml and replace Shoppers by your app name:

<string name="app_name">Shoppers</string>

  • Open android/app/src/main/AndroidManifes.xml and replace Shoppers by your app name:

<application android:label="Shoppers"

1.2 Change the app Bundle ID:

Android app: Search on android folder and replace following file

  • android/app/build.gradle
  • android/app/src/main/AndroidManifest.xml
  • android/app/src/main/java/com/example/flutact/MainActivity.java
  • Rename the folderandroid/app/src/main/java/com/example/flutact to your own bundle name, example: if you bunndle id is com.ins.myapp android/app/src/main/java/com/ins/flux
  • Please note that the file android/app/google-services.json should be change to match with your new bundle id, otherwise the app will be crash.

iOS app: Open XCode and replace by this screenshot - https://i.imgur.com/HQCNxUT.png

1.3 Change app icon

  • Open pubspec.yml file
  • find this line and change the change path to your icon path image_path: "assets/icons/icon.png"
  • run this command flutter pub run flutter_launcher_icons:main

2. Logo

Open lib/utils/config.dart to map your new image Logo or text Logo.

const Logo = {
  "title": "Shoppers",
  "fontSize": 24.0,
  "fontFamily": "Fashion",
  "isImage": false,
  "isAsset": false,
  "image":
      "https://s3-eu-west-1.amazonaws.com/cdn1.mullenlowegroup.com/uploads/sites/43/2016/06/flipkart-logo-2.jpg" // ----> If isImage true then add image URL, Also make isAsset true if you have kept your image in Asset File.
};

3. App Main Color

Open lib/utils/config.dart and change the app main color.

const Settings = {
  "Setting": {"MainColor": "#3a4660"}
};

4. Default Font and Header Font

Open pubspec.yaml and replace with your new font file that already copied to the asset folder:

  fonts:
    - family: Fashion
      fonts:
        - asset: assets/Fashion.ttf

Coding Gruide: go to the utils/styles.dart and change to new fontFamily. Make sure the spacing align correctly.

5. Default Country Code, symbol

Open utils/tools.dart file and update the menu section

  "symbol": "\$",
  "decimalDigits":2
};

Firebase configuration

  • Create a firebase project

  • iOS

    • Create an iOS app in the firebase console.
    • Download the Googleservice-info.plist file
    • Replace the file in "ios/Runner"
  • Android

    • Create an Android app in the firebase console.
    • Download the google-services.json file
    • Replace the file in "android/app"

Add this to firestore security rules

rules_version = '2';
service cloud.firestore {
  match /databases/{database}/documents {
    match /{document=**} {
      allow read, write: if request.auth.uid != null;
    }
  }
}
When you run your app you might get an error containing "google secure content" replace the out error in info.plist file in "ios/Runner/info.plist"

Run the project.

  • Don't forget to enable email and Gmail authentication and enable firestore database.

Facebook configuration

  • Create a facebook app
  • Enable facebook authentication in firebase
  • Don't forget to enable email and Gmail authentication.
  • Follow the facebook installation process on their website.
  • Change the facebook app id in Android-manifest.xml and info.plist

Push notification

  • User will be asked to allow push notification in iOS, in android it is allowed by default.
  • Token will be saved in user/user-id/tokens collection.
  • To test push notification open tab cloud messaging in firebase console.
  • Select the token from the above collection
  • Add the title and message and send it.

Change app icon

open pubspec.yml

flutter_icons:
  android: "launcher_icon" 
  ios: true
  image_path: "assets/icon/icon.png"
  
change the image_path to match your own

flutter pub get
flutter pub run flutter_launcher_icons:main

Onboarding screens

  • Open lib/screens/intro.dart
  • Change the color, text, and images to match yours.

Firebase functions code base.

1. Change the default project to your project name

open .firebaserc file. It's in backend project

{
  "projects": {
    "default": "<your-project-id>"
  }
}

you will get project id from firebase console. Also make sure you login with the same credentials that you have access to firebase project.

2. Change stripe and Razorpay key

{
  "stripe": {
    "token": "sk_test_***"
  }
}

firebase functions:config:set stripe.token=sk_test_**
firebase functions:config:set rzp.key_id=<key_id> rzp.secre=<secret>

3. Deploy the functions

  • Use node version 8.x.x

firebase deploy --only functions

Role management

  • open firebase console

  • go to the firestore

  • find the user you want to make admin and the change the role to admin

  • Note: This is a one time process. Once you are admin, you can change role from app admin panel.

Stripe

open lib/utils/config.dart and change

const StripeConfig = {
  "publishableKey": "pk_test_*****",
  "merchantId": "Test",
  "androidPayMode": 'test',
  "enabled": true,
};

Razorpay

open lib/utils/config.dart and change

 const RazorpayConfig = {
  "keyId": "rzp_test_*****",
  "callbackUrl": "http://example.com",
  "paymentMethodId": "razorpay",
  "enabled": false,
};

Possible solution to problem you face with release apk

Once again, thank you so much for purchasing this item. As I said at the beginning, I'd be glad to help you if you have any questions relating to this. No guarantees, but I'll do my best to assist. If you have a more general question relating to the items on codecanyon, you might consider visiting the forums and asking your question in the "Item Discussion" section.

shoppers's People

Contributors

hathtech avatar rajababu3 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

shoppers's Issues

Error occurred while parsing function triggers

/Users/air/AndroidStudioProjects/snabzenie/functions/index.js:1
import * as functions from 'firebase-functions'
^

SyntaxError: Unexpected token *
at Module._compile (internal/modules/cjs/loader.js:723:23)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10)
at Module.load (internal/modules/cjs/loader.js:653:32)
at tryModuleLoad (internal/modules/cjs/loader.js:593:12)
at Function.Module._load (internal/modules/cjs/loader.js:585:3)
at Module.require (internal/modules/cjs/loader.js:692:17)
at require (internal/modules/cjs/helpers.js:25:18)
at /usr/local/lib/node_modules/firebase-tools/lib/triggerParser.js:15:15
at Object. (/usr/local/lib/node_modules/firebase-tools/lib/triggerParser.js:53:3)
at Module._compile (internal/modules/cjs/loader.js:778:30)

I try to follow youtube documentation but get following error

[Firestore]: Listen for Query(usert: LoadUser, nextStatecXcXRhA3) failed: Status{code=PERMISSION_DENIED, description=Missing or insufficient pers/yxxy6Y6yVAWwF2l2ToqMcXcXRhA3) failed: Status{code=PERMISSION_DENIED, description=Missing or insufficient permissions., causes/yxxy6Y6yVAWwF2l2ToqMSION_DENIED: Missing or insufficient permissions.=null} ssing or insufficient
I/System.out( 8508): com.google.firebase.firestore.FirebaseFirestoreException: PERMISSION_DENIED: Missing or insufficient permstoreException: PERMISissions.

how to setup the firestore and rules setting

image

QUESTİON

Is it possible to add products to all users? I want users to sell their own products.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.