-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
456 additions
and
380 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
|
||
ios/MobileOrders/MobileOrders.xcodeproj/project.xcworkspace/xcuserdata/jacobilin.xcuserdatad/UserInterfaceState.xcuserstate | ||
flutter/.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,6 @@ | |
/build/ | ||
|
||
# Web related | ||
lib/generated_plugin_registrant.dart | ||
|
||
# Symbolication related | ||
app.*.symbols | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"title":"Store App","main_color":"Black","show_percentage_result":true,"voice":false,"show_number_result":true,"start_over":"","payment_link":"","conclusion":"Thank you! Please enter your shipping information:","products":[{"id":"p1","title":"Chair","description":"Introducing our luxurious and comfortable chair, designed to add a touch of elegance to any room in your home or office. Made with high-quality materials, this chair features plush cushioning for maximum comfort and support. The sleek and modern design adds sophistication and style to any interior decor, making it the perfect statement piece to elevate your space. ","price":29.99,"imageUrl":"https://picsum.photos/640","isFavorite":false},{"id":"p2","title":"Couch","description":"Perfect for lounging and relaxing in style, our luxurious couch is the epitome of comfort and sophistication. Made with high-quality materials and expert craftsmanship, this couch features plush cushions that provide the perfect balance of support and softness. Its modern and elegant design effortlessly adds a touch of class to any living room or den. ","price":59.99,"imageUrl":"https://picsum.photos/641","isFavorite":false},{"id":"p3","title":"Table","description":"Upgrade your home decor game with our stunning and practical table. Crafted with high-quality materials, this table boasts a modern design that effortlessly blends with any setting. Its spacious tabletop provides ample space for all your essentials, while the sturdy base ensures lasting durability and stability.","price":19.99,"imageUrl":"https://picsum.photos/639","isFavorite":false},{"id":"p4","title":"Bed","description":"Experience the ultimate in comfort and luxury with our expertly crafted bedding. Our plush and cozy bed features a premium mattress that conforms to your body, providing unparalleled support and relief from nighttime discomfort. The soft, breathable sheets and silky-smooth duvet cover create the perfect sleep sanctuary, while the hypoallergenic materials ensure a healthier and more relaxing sleep. ","price":49.99,"imageUrl":"https://picsum.photos/642","isFavorite":false}],"dnsgs":true} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
class HttpException implements Exception { | ||
final String message; | ||
final String? message; | ||
|
||
HttpException(this.message); | ||
|
||
@override | ||
String toString() { | ||
return message; | ||
return message!; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.