Skip to content

Instantly share code, notes, and snippets.

@up1
Created March 5, 2025 18:09
Show Gist options
  • Save up1/d1edb57326294e33066c2ada6a7a9142 to your computer and use it in GitHub Desktop.
Save up1/d1edb57326294e33066c2ada6a7a9142 to your computer and use it in GitHub Desktop.
Generated code from pixels2flutter.dev
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.green),
useMaterial3: true,
),
home: const MyCartPage(),
);
}
}
class MyCartPage extends StatelessWidget {
const MyCartPage({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Colors.green,
leading: const Icon(Icons.arrow_back),
title: const Text(
'รถเข็นของฉัน',
style: TextStyle(
color: Colors.black,
fontWeight: FontWeight.bold,
),
),
),
body: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Center(
child: Image.network(
'https://placehold.co/200x200?description=An%20illustration%20of%20a%20person%20with%20a%20shopping%20basket',
width: 200,
height: 200,
),
),
const SizedBox(height: 20),
const Text(
'ไม่มีสินค้าในรถเข็นของคุณ',
style: TextStyle(
fontSize: 18,
fontWeight: FontWeight.bold,
),
),
],
),
bottomNavigationBar: Padding(
padding: const EdgeInsets.all(16.0),
child: ElevatedButton(
style: ElevatedButton.styleFrom(
backgroundColor: Colors.green,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(30),
),
minimumSize: const Size.fromHeight(50),
),
onPressed: () {},
child: const Text(
'เริ่มช้อปเลย',
style: TextStyle(
color: Colors.black,
fontWeight: FontWeight.bold,
),
),
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment