@@ -20,21 +20,16 @@ class InformationBox extends StatelessWidget {
2020 baseline: TextBaseline .alphabetic,
2121 child: Link (
2222 uri: Uri .parse ('https://pub.dev/packages/swagger_parser' ),
23- builder:
24- (context, followLink) => MouseRegion (
25- cursor: SystemMouseCursors .click,
26- child: GestureDetector (
27- onTap: followLink,
28- child: const Text (
29- 'swagger_parser' ,
30- style: TextStyle (
31- fontSize: 18 ,
32- color: Color (0xFFD0BCFF ),
33- decoration: TextDecoration .underline,
34- ),
35- ),
36- ),
23+ builder: (context, followLink) => MouseRegion (
24+ cursor: SystemMouseCursors .click,
25+ child: GestureDetector (
26+ onTap: followLink,
27+ child: const Text (
28+ 'swagger_parser' ,
29+ style: TextStyle (fontSize: 18 , color: Color (0xFFD0BCFF ), decoration: TextDecoration .underline),
3730 ),
31+ ),
32+ ),
3833 ),
3934 ),
4035 const TextSpan (
@@ -70,8 +65,7 @@ class InformationBox extends StatelessWidget {
7065 children: [
7166 TextSpan (
7267 style: const TextStyle (fontSize: 18 ),
73- text:
74- 'Paste your JSON file into text box and configure given parameters: \n ' ,
68+ text: 'Paste your JSON file into text box and configure given parameters: \n ' ,
7569 children: [
7670 const WidgetSpan (
7771 alignment: PlaceholderAlignment .aboveBaseline,
@@ -94,8 +88,7 @@ class InformationBox extends StatelessWidget {
9488 child: SizedBox (height: 24 ),
9589 ),
9690 const TextSpan (
97- text:
98- '- Language parameter for generated files. Currently support languages are: dart, kotlin.\n ' ,
91+ text: '- Language parameter for generated files. Currently support languages are: dart, kotlin.\n ' ,
9992 style: TextStyle (fontSize: 18 ),
10093 ),
10194 const TextSpan (
@@ -109,37 +102,34 @@ class InformationBox extends StatelessWidget {
109102 child: SizedBox (height: 24 ),
110103 ),
111104 TextSpan (
112- text:
113- '- Freezed. Available only for dart. Makes generated DTOs compatible with ' ,
105+ text: '- Freezed. Available only for dart. Makes generated DTOs compatible with ' ,
114106 style: const TextStyle (fontSize: 18 ),
115107 children: [
116108 WidgetSpan (
117109 alignment: PlaceholderAlignment .baseline,
118110 baseline: TextBaseline .alphabetic,
119111 child: Link (
120112 uri: Uri .parse ('https://pub.dev/packages/freezed' ),
121- builder:
122- (context, followLink) => MouseRegion (
123- cursor: SystemMouseCursors .click,
124- child: GestureDetector (
125- onTap: followLink,
126- child: const Text (
127- 'freezed' ,
128- style: TextStyle (
129- fontSize: 18 ,
130- color: Color (0xFFD0BCFF ),
131- decoration: TextDecoration .underline,
132- ),
133- ),
113+ builder: (context, followLink) => MouseRegion (
114+ cursor: SystemMouseCursors .click,
115+ child: GestureDetector (
116+ onTap: followLink,
117+ child: const Text (
118+ 'freezed' ,
119+ style: TextStyle (
120+ fontSize: 18 ,
121+ color: Color (0xFFD0BCFF ),
122+ decoration: TextDecoration .underline,
134123 ),
135124 ),
125+ ),
126+ ),
136127 ),
137128 ),
138129 ],
139130 ),
140131 const TextSpan (
141- text:
142- '\n Press generate and enjoy your Data classes and Rest clients packed into zip archive.' ,
132+ text: '\n Press generate and enjoy your Data classes and Rest clients packed into zip archive.' ,
143133 style: TextStyle (fontSize: 18 ),
144134 ),
145135 ],
0 commit comments