├── .DS_Store ├── README.md ├── assets └── fonts │ ├── Anton-Regular.ttf │ ├── Lato-Bold.ttf │ └── Lato-Regular.ttf ├── lib - selesai ├── main.dart ├── models │ └── product.dart ├── providers │ └── all_products.dart ├── screens │ ├── product_detail_screen.dart │ └── products_overview_screen.dart └── widgets │ ├── product_grid.dart │ └── product_item.dart ├── lib ├── main.dart ├── models │ └── product.dart ├── screens │ ├── product_detail_screen.dart │ └── products_overview_screen.dart └── widgets │ └── product_item.dart └── pubspec.yaml /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuldii/youtube_provider/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuldii/youtube_provider/HEAD/README.md -------------------------------------------------------------------------------- /assets/fonts/Anton-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuldii/youtube_provider/HEAD/assets/fonts/Anton-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuldii/youtube_provider/HEAD/assets/fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuldii/youtube_provider/HEAD/assets/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /lib - selesai/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuldii/youtube_provider/HEAD/lib - selesai/main.dart -------------------------------------------------------------------------------- /lib - selesai/models/product.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuldii/youtube_provider/HEAD/lib - selesai/models/product.dart -------------------------------------------------------------------------------- /lib - selesai/providers/all_products.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuldii/youtube_provider/HEAD/lib - selesai/providers/all_products.dart -------------------------------------------------------------------------------- /lib - selesai/screens/product_detail_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuldii/youtube_provider/HEAD/lib - selesai/screens/product_detail_screen.dart -------------------------------------------------------------------------------- /lib - selesai/screens/products_overview_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuldii/youtube_provider/HEAD/lib - selesai/screens/products_overview_screen.dart -------------------------------------------------------------------------------- /lib - selesai/widgets/product_grid.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuldii/youtube_provider/HEAD/lib - selesai/widgets/product_grid.dart -------------------------------------------------------------------------------- /lib - selesai/widgets/product_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuldii/youtube_provider/HEAD/lib - selesai/widgets/product_item.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuldii/youtube_provider/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/models/product.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuldii/youtube_provider/HEAD/lib/models/product.dart -------------------------------------------------------------------------------- /lib/screens/product_detail_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuldii/youtube_provider/HEAD/lib/screens/product_detail_screen.dart -------------------------------------------------------------------------------- /lib/screens/products_overview_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuldii/youtube_provider/HEAD/lib/screens/products_overview_screen.dart -------------------------------------------------------------------------------- /lib/widgets/product_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuldii/youtube_provider/HEAD/lib/widgets/product_item.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuldii/youtube_provider/HEAD/pubspec.yaml --------------------------------------------------------------------------------