This file contains hidden or 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
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(const MyApp()); | |
} | |
class MyApp extends StatelessWidget { | |
const MyApp({super.key}); | |
@override |
This file contains hidden or 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
import 'package:flutter/material.dart'; | |
class ProductAppBar extends StatelessWidget with PreferredSizeWidget { | |
final Color color; | |
final String text; | |
const ProductAppBar({ | |
Key? key, | |
required this.color, | |
required this.text, |
This file contains hidden or 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
class ProductText extends StatelessWidget { | |
final String text; | |
final double fontSize; | |
final FontWeight fontWeight; | |
const ProductText({ | |
Key? key, | |
this.fontSize = 16.0, | |
this.fontWeight = FontWeight.normal, | |
required this.text, |
This file contains hidden or 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
class Tags extends StatelessWidget { | |
final List<String> tags; | |
final Color bgColor; | |
const Tags({ | |
Key? key, | |
required this.tags, | |
required this.bgColor, | |
}) : super(key: key); |
This file contains hidden or 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
class QuantitySelector extends StatefulWidget { | |
const QuantitySelector({Key? key}) : super(key: key); | |
@override | |
State<QuantitySelector> createState() => _QuantitySelectorState(); | |
} | |
class _QuantitySelectorState extends State<QuantitySelector> { | |
int quantity = 1; |
This file contains hidden or 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
class PurchaseButton extends StatelessWidget { | |
final Color color; | |
final VoidCallback onPurchaseHandler; | |
const PurchaseButton({ | |
required this.color, | |
required this.onPurchaseHandler, | |
Key? key, | |
}) : super(key: key); |
This file contains hidden or 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
class ProductBody extends StatelessWidget { | |
final Color color; | |
final String webViewUrl; | |
final String title; | |
final List<String> tags; | |
final String description; | |
const ProductBody({ | |
Key? key, | |
required this.color, |
This file contains hidden or 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
class ProductPage extends StatelessWidget { | |
const ProductPage({super.key}); | |
@override | |
Widget build(BuildContext context) { | |
return const Scaffold( | |
appBar: ProductAppBar( | |
color: blue, | |
text: appBarTitle, | |
), |
This file contains hidden or 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
{ | |
"name": "NewTestRun", | |
"isAutomated": true, | |
"plan": { | |
"id": "1" | |
} | |
} |
This file contains hidden or 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
[ | |
{ | |
"durationInMs": 2558, | |
"testCaseRevision": "4", | |
"computerName": "computer", | |
"startedDate": "2020-10-01T14:09:04.068028700", | |
"state": "Completed", | |
"testCaseTitle": "en başta bu bilgiyi almıştık", | |
"testPoint": { | |
"id": 5 |
OlderNewer