Eco Friendly Shopping Guide: Sustainable Products & Ethical Choices - Flutter App
Discover eco-friendly shopping options with our Flutter app. Browse recyclable, sustainable, and ethically sourced products. From recycled paper towels to cruelty-free cosmetics, make informed choices for a greener future. Explore now!
Flutter Code:
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
void main() {
runApp(EcoFriendlyShoppingApp());
}
class EcoFriendlyShoppingApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Eco Friendly Shopping Guide',
theme: ThemeData(
primarySwatch: Colors.green,
visualDensity: VisualDensity.adaptivePlatformDensity,
),
home: EcoFriendlyShoppingScreen(),
);
}
}
class EcoFriendlyShoppingScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Eco Friendly Shopping Guide'),
),
body: ListView(
children: <Widget>[
CategoryTitle(categoryName: 'Recyclability'),
ProductTitle(productName: 'Recycled Paper Towels'),
ProductTitle(productName: 'Reusable Water Bottle'),
ProductTitle(productName: 'Biodegeradable Trash Bags'),
CategoryTitle(categoryName: 'Sustainability Certifications'),
ProductTitle(productName: 'Fair Trade Coffee'),
ProductTitle(productName: 'Organic Cotton T-Shirts'),
ProductTitle(productName: 'RainForest Alliance Chocolate'),
CategoryTitle(categoryName: 'Ethical Sourcing'),
ProductTitle(productName: 'Cruelty-Free Cosmetics'),
ProductTitle(productName: 'Conflict-Free Diamonds'),
ProductTitle(productName: 'Ethically Sourced Jewelry'),
],
),
);
}
}
class CategoryTitle extends StatelessWidget {
final String categoryName;
const CategoryTitle({required this.categoryName});
@override
Widget build(BuildContext context) {
return ListTile(
title: Text(
categoryName,
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 18.0,
),
),
);
}
}
class ProductTitle extends StatelessWidget {
final String productName;
const ProductTitle({required this.productName});
@override
Widget build(BuildContext context) {
return ListTile(
title: Text(productName),
onTap: () {
// Add funtion to navigation on the product to navigate to other product on the screen
},
);
}
}
Output:
YouTube Link:
GitHub:
Eco Friendly Shopping Guide: Sustainable Products & Ethical Choices - Flutter App
https://github.com/Sivatech24/Eco-Friendly-Shopping-Guide-Sustainable-Products-Ethical-Choices---Flutter-App
https://github.com/Sivatech24/Eco-Friendly-Shopping-Guide-Sustainable-Products-Ethical-Choices---Flutter-App.git
Description:
Eco Friendly Shopping Guide: Sustainable Products & Ethical Choices - Flutter App. Discover eco-friendly shopping options with our Flutter app. Browse recyclable, sustainable, and ethically sourced products. From recycled paper towels to cruelty-free cosmetics, make informed choices for a greener future. Explore now!
In today's world, environmental consciousness is paramount. Our Eco Friendly Shopping Guide app aims to empower users to make sustainable choices effortlessly. With a user-friendly interface and a comprehensive list of products, it simplifies the process of finding eco-friendly alternatives.
The app features various categories, including Recyclability, Sustainability Certifications, and Ethical Sourcing. Each category contains a curated selection of products that align with eco-friendly principles.
Under the Recyclability category, users can find products like Recycled Paper Towels, Reusable Water Bottles, and Biodegradable Trash Bags. These items promote the reuse of materials and reduce waste generation.
In the Sustainability Certifications section, users can explore products with certifications such as Fair Trade Coffee, Organic Cotton T-Shirts, and Rainforest Alliance Chocolate. These certifications ensure that products meet strict environmental and ethical standards, supporting sustainable production practices.
The Ethical Sourcing category showcases products like Cruelty-Free Cosmetics, Conflict-Free Diamonds, and Ethically Sourced Jewelry. By choosing these items, users contribute to ethical supply chains and support initiatives that prioritize workers' rights and animal welfare.
Each product is accompanied by a brief description, allowing users to learn more about its environmental impact and ethical considerations. Additionally, users can tap on a product to view more details or navigate to related products, enhancing their shopping experience.
With the Eco Friendly Shopping Guide app, users can shop confidently, knowing that their purchases align with their values and contribute to positive environmental and social outcomes. Whether you're a seasoned eco-conscious consumer or just starting your sustainable journey, this app is your go-to companion for ethical shopping.
Join us in building a more sustainable future, one purchase at a time. Download the Eco Friendly Shopping Guide app today and make a difference with every shopping decision. Together, we can create a greener, fairer world for generations to come.
Comments
Post a Comment