Posts

Showing posts with the label ui design

Build Your First Flutter App in 10 Minutes | Flutter Beginner Tutorial 2026 | FuzzuTech

Image
━━━━━━━━━━━━━━━━━━━━ 📖 Introduction In this Flutter tutorial, we will build a beautiful Flutter Welcome App from scratch using the Flutter framework and the Dart programming language. This beginner-friendly project teaches the fundamentals of Flutter by creating a modern mobile application with a professional user interface, gradient background, AppBar, Flutter logo, welcome message, interactive button, and SnackBar notification. During this project, you will learn how Flutter applications are structured using MaterialApp, Scaffold, AppBar, Body, Center, Column, Text, FlutterLogo, ElevatedButton, SnackBar, Container, Padding, SizedBox, BoxDecoration, LinearGradient, and other essential Flutter widgets. This project is designed especially for complete beginners who want to start mobile application development without any previous programming experience. Every widget is explained in a simple and practical way so you can understand how Flutter applications are...

React Native Orb Loader – Glow UI Animation | FuzzuTech

Image
  Demo : Click Video 👇👇👇 🌟 Featured : 🔁 Looping Orb Spin Animation 💡 Typewriter-style text 🌈 Gradient overlays with glow effects 📱 Ideal for splash screens 🔧 Tools Used: React Native, Animated API, Easing, JS, CSS-like styles Code : OrbLoader.js import React, { useRef, useEffect, useState } from 'react'; import { View, StyleSheet, Animated, Easing, Dimensions, Text, } from 'react-native'; const { width } = Dimensions.get('window'); const SIZE = 250; const RADIUS = SIZE / 2; const OrbLoader = () => { const rotateAnim = useRef(new Animated.Value(0)).current; const pulseAnim = useRef(new Animated.Value(1)).current; const [displayText, setDisplayText] = useState('Loading...'); const fullText = 'Loading...'; useEffect(() => { // Rotation animation Animated.loop( Animated.timing(rotateAnim, { toValue: 1, duration: 4000, easing: Easing.linear, useNativeD...

🔥 Responsive Card Grid Using Flexbox | Modern UI Design with Hover Effect

Image
Demo : Click Video 👇👇👇 🎯 Features: ✅ Fully responsive on all devices 📱💻 ✅ Smooth hover effect for a modern look 🔥 ✅ Perfect for portfolios, blogs, and product showcases Code : 📂 Folder Structure: /responsive-card-grid   │── index.html   │── style.css   HTML : <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>Responsive Card Grid with Flexbox</title>     <link rel="stylesheet" href="style.css"> </head> <body>     <div class="card-container">         <div class="card">             <img src="https://via.placeholder.com/300" alt="Card Image">             <h2>Card Title 1</h2>             <p>...

👉 Modern Eye Password Toggle UI using HTML, CSS & JavaScript | Stylish Login Form

Image
Demo : Click Video 👇👇👇 Features: ✅ Modern UI (Glassmorphism effect) ✅ Eye Icon Toggle (Show/Hide Password) ✅ Fully Responsive ✅ Smooth Animations Code : 📂 Folder Structure: /password-toggle-form     ├── index.html     ├── style.css     ├── script.js   🔹 index.html <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>Login Form with Eye Toggle</title>     <link rel="stylesheet" href="style.css">     <script defer src="script.js"></script>     <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"> </head> <body>     <div class="login-container">         <h2>Login</h2>       ...