Skip to main content

Posts

Showing posts from February, 2024

Simple Calculator In C Programming | Coding Challange Day 1

Simple Calculator is a C language-based application used for performing all the simple arithmetic operations like addition, multiplication, division, and subtraction. The application can be made using basic knowledge of C like if-else statements, loops, etc. The functionalities of the application are men Addition Subtraction Multiplication Division Logarithmic values Square roots Program: #include <stdio.h> #include <math.h> int main() {     int choice;     double num1, num2, result;     printf("Simple Calculator\n");     printf("1. Addition\n");     printf("2. Subtraction\n");     printf("3. Multiplication\n");     printf("4. Division\n");     printf("5. Logarithmic values\n");     printf("6. Square root\n");     printf("Enter your choice: ");     scanf("%d", &choice);     switch(choice) {         case 1:        ...

Flutter App Development For Eco-Friendly Habits for Sustainable Living 🌱

Flutter App Development For Eco-Friendly Habits for Sustainable Living 🌱 Welcome to EcoTracker - your go-to companion for sustainable living tips and eco-friendly practices! In a world where environmental consciousness is increasingly important, EcoTracker is here to empower you with practical advice and actionable steps to live in harmony with the planet. Flutter Code: import 'package:flutter/material.dart'; void main() { runApp(EcoTrackerApp()); } class EcoTrackerApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( debugShowCheckedModeBanner: false, title: 'Sustainable Living', theme: ThemeData( primarySwatch: Colors.green, ), home: EcoTrackerHomePage(), ); } } class EcoTrackerHomePage extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text('Sustainable Living'), ), ...

Unreal Wonders: A Stylized Odyssey – Mastering Environment Design in Unreal Engine

 

Building an Eco-Challenges App with Flutter | Flutter App Development Tutorial

Building an Eco-Challenges App with Flutter | Flutter App Development Tutorial Dart Code: import 'package:flutter/material.dart'; void main() {   runApp(EcoChallengesApp()); } class EcoChallengesApp extends StatelessWidget {   @override   Widget build(BuildContext context) {     return MaterialApp(       debugShowCheckedModeBanner: false,       title: 'Eco-Challenges App',       theme: ThemeData(         primarySwatch: Colors.green,         visualDensity: VisualDensity.adaptivePlatformDensity,       ),       home: EcoChallengesHomePage(),     );   } } class EcoChallengesHomePage extends StatefulWidget {   @override   _EcoChallengesHomePageState createState() => _EcoChallengesHomePageState(); } class _EcoChallengesHomePageState extends State<EcoChallengesHomePage> {   // Dummy data for challenges   List<...