-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
func.dart
136 lines (126 loc) · 2.12 KB
/
func.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
import 'package:ff_annotation_route_library/ff_annotation_route_library.dart';
import 'package:flutter/material.dart';
import 'package:flutter_hooks/flutter_hooks.dart';
import 'package:functional_widget_annotation/functional_widget_annotation.dart';
import 'package:hooks_riverpod/hooks_riverpod.dart';
part 'func.g.dart';
@FunctionalWidget()
@FFRoute(
name: 'flutterCandies://func',
routeName: 'test-func',
)
Widget func(
int a,
String? b, {
bool? c,
required double d,
}) {
return Container();
}
@swidget
@FFRoute(
name: 'flutterCandies://func1',
routeName: 'test-func-1',
)
Widget func1(
int a,
String? b, {
bool? c,
required double d,
}) {
return Container();
}
@hwidget
@FFRoute(
name: 'flutterCandies://func2',
routeName: 'test-func-2',
)
Widget func2(
int a,
String? b, {
bool? c,
required double d,
}) {
return Container();
}
@hcwidget
@FFRoute(
name: 'flutterCandies://func3',
routeName: 'test-func-3',
)
Widget func3(
int a,
String? b, {
bool? c,
required double d,
}) {
return Container();
}
@cwidget
@FFRoute(
name: 'flutterCandies://func4',
routeName: 'test-func-4',
)
Widget func4(
int a,
String? b, {
bool? c,
required double d,
}) {
return Container();
}
@cwidget
@FFRoute(
name: 'flutterCandies://func5',
routeName: 'test-func-5',
)
Widget _func5(
int a,
String? b, {
bool? c,
required double d,
}) {
return Container();
}
// Routes not support private class.
// @cwidget
// @FFRoute(
// name: 'flutterCandies://func6',
// routeName: 'test-func-6',
// )
// Widget __func6(
// int a,
// String? b, {
// bool? c,
// required double d,
// }) {
// return Container();
// }
@cwidget
@FFRoute(
name: 'flutterCandies://func7',
routeName: 'test-func-7',
)
Widget _$7func(
int a,
String? b, {
bool? c,
required double d,
}) {
return Container();
}
// Routes not support private class.
// @cwidget
// @FFRoute(
// name: 'flutterCandies://func8',
// routeName: 'test-func-8',
// )
// Widget ___func8(
// int a,
// String? b, {
// bool? c,
// required double d,
// }) {
//
// return Container();
// }