Advertisement
anify

codelab.main.dart

Sep 14th, 2023
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.66 KB | None | 0 0
  1. import 'package:flutter/material.dart';
  2. // import 'package:codelab/detail_screen.dart';
  3.  
  4. void main() {
  5. runApp(const MyApp());
  6. }
  7.  
  8. class MyApp extends StatelessWidget {
  9. const MyApp({super.key});
  10.  
  11. @override
  12. Widget build(BuildContext context) {
  13. return MaterialApp(
  14. title: 'Wisata Bandung',
  15. theme: ThemeData(),
  16. home: const DetailScreen(),
  17. );
  18. }
  19. }
  20.  
  21. class DetailScreen extends StatelessWidget {
  22. const DetailScreen({super.key});
  23.  
  24. @override
  25. Widget build(BuildContext context) {
  26. return Scaffold(
  27. body: SafeArea(
  28. child: Column(
  29. crossAxisAlignment: CrossAxisAlignment.stretch,
  30. children: [
  31. Image.asset('images/farm-house.jpg'),
  32. Container(
  33. margin: const EdgeInsets.only(top: 16),
  34. child: const Text('Farm House Lembang',
  35. textAlign: TextAlign.center,
  36. style: TextStyle(fontSize: 30, fontWeight: FontWeight.bold)),
  37. ),
  38. Container(
  39. margin: const EdgeInsets.symmetric(vertical: 16),
  40. child: const Row(
  41. mainAxisAlignment: MainAxisAlignment.spaceEvenly,
  42. children: [
  43. Column(
  44. children: [
  45. Icon(Icons.calendar_today),
  46. SizedBox(height: 8),
  47. Text('Open Everyday'),
  48. ],
  49. ),
  50. Column(
  51. children: [
  52. Icon(Icons.access_time),
  53. SizedBox(height: 8),
  54. Text('09.00 - 20.00'),
  55. ],
  56. ),
  57. Column(
  58. children: [
  59. Icon(Icons.monetization_on),
  60. SizedBox(height: 8),
  61. Text('Rp 25.000,00'),
  62. ],
  63. ),
  64. ],
  65. ),
  66. ),
  67. Container(
  68. padding: const EdgeInsets.all(16),
  69. child: const Text(
  70. 'Berada di jalur utama Bandung-Lembang, Farm House menjadi objek wisata yang tidak pernah sepi pengunjung. Selain karena letaknya strategis, kawasan ini juga menghadirkan nuansa wisata khas Eropa. Semua itu diterapkan dalam bentuk spot swafoto Instagramable.',
  71. textAlign: TextAlign.center,
  72. style: TextStyle(fontSize: 16.0),
  73. ),
  74. ),
  75. Image.network(
  76. 'https://media-cdn.tripadvisor.com/media/photo-s/0d/7c/59/70/farmhouse-lembang.jpg'),
  77. ],
  78. ),
  79. ),
  80. );
  81. }
  82. }
  83.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement