Skip to content

spkdroid/Lemonade

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

47 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

πŸ₯€ Chill 'N' Drink

React Native Platform License

Build Status Tests

πŸ“₯ Download Latest Build

Build Type Status Download
πŸ› Debug APK Debug Build πŸ“± Download Debug APK
πŸš€ Release APK Release Build πŸ“± Download Release APK

Note: Click on the download links above, then click on the latest successful workflow run, and download the APK from the "Artifacts" section.

🎬 App Demo

πŸ“± See Chill N Drink in Action

https://github.com/spkdroid/Lemonade/raw/master/screenshots/Demo.mp4

Experience the smooth, intuitive interface of our beverage ordering app

A modern, professional beverage ordering mobile application built with React Native. Chill N Drink offers a seamless experience for browsing and ordering refreshing drinks with a beautiful, intuitive interface inspired by leading food delivery platforms.

πŸ“± About Chill N Drink

Chill N Drink is a premium beverage ordering platform that brings the best drinks directly to your doorstep. Our app features a curated selection of:

  • πŸ‹ Fresh Lemonades - Classic and flavored varieties
  • πŸ₯€ Smoothies - Nutritious fruit and vegetable blends
  • 🧊 Iced Teas - Refreshing herbal and traditional teas
  • β˜• Hot Beverages - Specialty coffee and warm drinks
  • 🍿 Snacks - Perfect pairings for your drinks

Key Features

  • Modern UI/UX - Professional design inspired by DoorDash and Uber Eats
  • Real-time Menu - Dynamic menu loading with categories and search
  • Smart Cart - Persistent cart with quantity management
  • Secure Checkout - Integrated payment processing and order validation
  • Portrait Optimized - Locked orientation for optimal mobile experience
  • Offline Support - Cached menu data for seamless browsing

πŸ—οΈ Architecture

Chill N Drink follows Clean Architecture principles with a clear separation of concerns:

src/
β”œβ”€β”€ πŸ“± presentation/          # UI Layer
β”‚   β”œβ”€β”€ screens/             # Screen components
β”‚   β”œβ”€β”€ components/          # Reusable UI components
β”‚   β”œβ”€β”€ viewModels/         # MVVM presentation logic
β”‚   └── navigation/         # App navigation setup
β”œβ”€β”€ 🏒 domain/              # Business Logic Layer
β”‚   β”œβ”€β”€ models/             # Data models
β”‚   β”œβ”€β”€ usecases/          # Business use cases
β”‚   └── repositories/      # Repository interfaces
β”œβ”€β”€ πŸ—„οΈ data/               # Data Layer
β”‚   β”œβ”€β”€ repositories/      # Repository implementations
β”‚   └── datasources/       # API and local data sources
β”œβ”€β”€ πŸ”§ infrastructure/     # Infrastructure Layer
β”‚   └── storage/           # Local storage services
└── πŸ› οΈ utils/             # Shared utilities

Design Patterns Used

  • MVVM (Model-View-ViewModel) - Clean separation of UI and business logic
  • Repository Pattern - Abstracted data access layer
  • Use Case Pattern - Encapsulated business operations
  • Dependency Injection - Loose coupling and testability

🌐 Backend Services

Chill N Drink integrates with robust backend services to provide real-time functionality:

Menu Service

  • Endpoint: https://www.spkdroid.com/orange/menu.php
  • Features: Dynamic menu loading, category management, item details
  • Caching: Local storage with automatic refresh

Checkout Service

  • Endpoint: https://www.spkdroid.com/orange/checkout.php
  • Features: Order processing, payment validation, order confirmation
  • Security: Encrypted payment data, secure order transmission

API Features

  • RESTful architecture
  • JSON response format
  • Error handling and validation
  • Rate limiting and security

πŸ“Έ Screenshots

Here are a few screenshots showcasing key features of the app:

Home Screen Menu List Add to Cart
Add to Cart Checkout Order Confirmation
Checkout Success

πŸš€ Getting Started

Prerequisites

Before running Chill N Drink, ensure you have completed the React Native Environment Setup.

Required Tools:

  • Node.js (16.0 or higher)
  • React Native CLI
  • Android Studio (for Android development)
  • Xcode (for iOS development, macOS only)

Installation

  1. Clone the repository

    git clone https://github.com/spkdroid/Lemonade
    cd Lemonade
  2. Install dependencies

    npm install
  3. iOS Setup (macOS only)

    bundle install
    bundle exec pod install --project-directory=ios
  4. Start Metro bundler

    npm start
  5. Run the app

    # Android
    npm run android
    
    # iOS
    npm run ios

πŸ”¨ Build Scripts

Chill N Drink includes comprehensive build automation:

Production Builds

# Android Release APK
./build.sh android release

# iOS Release Archive
./build.sh ios release

# Both platforms
./build.sh both release

Development Builds

# Quick Android debug
./dev.sh android

# Quick iOS debug  
./dev.sh ios

# Start Metro only
./dev.sh metro

Build Outputs

  • Android Debug: android/app/build/outputs/apk/debug/app-debug.apk
  • Android Release: android/app/build/outputs/apk/release/app-release.apk
  • iOS Archive: ios/build/ChillNDrinkApp.xcarchive

πŸ› οΈ Development

Code Style

This project uses ESLint and Prettier for consistent code formatting:

# Lint code
npm run lint

# Format code
npm run format

Testing

# Run tests
npm test

# Run tests with coverage
npm run test:coverage

🀝 Contributing

We welcome contributions to Chill N Drink! Please read our contributing guidelines before submitting pull requests.

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Add tests if applicable
  5. Submit a pull request

πŸ› Troubleshooting

Common Issues

Metro bundler not starting:

npx react-native start --reset-cache

Android build errors:

cd android && ./gradlew clean && cd ..
npm run android

iOS build errors:

cd ios && rm -rf build && cd ..
bundle exec pod install --project-directory=ios
npm run ios

For more issues, see the React Native Troubleshooting Guide.

πŸ“š Resources

πŸ“„ License

This project is licensed under the MIT License - see the LICENSE file for details.

MIT License

Copyright (c) 2025 Chill N Drink

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

β€πŸ’» Author

Ramkumar Velmurugan

πŸ™ Acknowledgments

This project was developed with the assistance of advanced AI tools and technologies:

AI Development Assistance

  • GitHub Copilot πŸ€–

    • Intelligent code completion and suggestions
    • Automated code generation and refactoring
    • Real-time development assistance and best practices
  • ChatGPT πŸ’¬

    • Architecture planning and design patterns
    • Code review and optimization suggestions
    • Documentation and technical writing assistance

All contributions from AI tools were reviewed, verified, and curated by the author.

Special Thanks

  • React Native Community - For the amazing framework and ecosystem
  • Open Source Contributors - For the libraries and tools that make this possible
  • Design Inspiration - DoorDash, Uber Eats, and other leading mobile platforms

Built with ❀️ using React Native

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages