@@ -38,7 +38,7 @@ public extension View {
38
38
- title: The title text
39
39
- description: The description text
40
40
*/
41
-
41
+ @ available ( * , deprecated , message : " Please update PermissionsSwiftUI to 1.0.0 above. " )
42
42
func customizeCameraPermissionWith( title: String , description: String ) -> some View {
43
43
PermissionModel . PermissionModelStore. cameraPermission. title = title
44
44
PermissionModel . PermissionModelStore. cameraPermission. description = description
@@ -51,7 +51,7 @@ public extension View {
51
51
- Parameters:
52
52
- title: The title text
53
53
*/
54
-
54
+ @ available ( * , deprecated , message : " Please update PermissionsSwiftUI to 1.0.0 above. " )
55
55
func customizeCameraPermissionWith( title: String ) -> some View {
56
56
PermissionModel . PermissionModelStore. cameraPermission. title = title
57
57
return self . modifier ( PlaceholderModifier ( ) )
@@ -63,7 +63,7 @@ public extension View {
63
63
- Parameters:
64
64
- description: The description text
65
65
*/
66
-
66
+ @ available ( * , deprecated , message : " Please update PermissionsSwiftUI to 1.0.0 above. " )
67
67
func customizeCameraPermissionWith( description: String ) -> some View {
68
68
PermissionModel . PermissionModelStore. cameraPermission. description = description
69
69
return self . modifier ( PlaceholderModifier ( ) )
@@ -96,7 +96,7 @@ public extension View {
96
96
- title: The title text
97
97
- description: The description text
98
98
*/
99
-
99
+ @ available ( * , deprecated , message : " Please update PermissionsSwiftUI to 1.0.0 above. " )
100
100
func customizeLocationPermissionWith( title: String , description: String ) -> some View {
101
101
PermissionModel . PermissionModelStore. locationPermission. title = title
102
102
PermissionModel . PermissionModelStore. locationPermission. description = description
@@ -109,7 +109,7 @@ public extension View {
109
109
- Parameters:
110
110
- title: The title text
111
111
*/
112
-
112
+ @ available ( * , deprecated , message : " Please update PermissionsSwiftUI to 1.0.0 above. " )
113
113
func customizeLocationPermissionWith( title: String ) -> some View {
114
114
PermissionModel . PermissionModelStore. locationPermission. title = title
115
115
return self . modifier ( PlaceholderModifier ( ) )
@@ -121,7 +121,7 @@ public extension View {
121
121
- Parameters:
122
122
- description: The description text
123
123
*/
124
-
124
+ @ available ( * , deprecated , message : " Please update PermissionsSwiftUI to 1.0.0 above. " )
125
125
func customizeLocationPermissionWith( description: String ) -> some View {
126
126
PermissionModel . PermissionModelStore. locationPermission. description = description
127
127
return self . modifier ( PlaceholderModifier ( ) )
@@ -154,7 +154,7 @@ public extension View {
154
154
- title: The title text
155
155
- description: The description text
156
156
*/
157
-
157
+ @ available ( * , deprecated , message : " Please update PermissionsSwiftUI to 1.0.0 above. " )
158
158
func customizeCalendarPermissionWith( title: String , description: String ) -> some View {
159
159
PermissionModel . PermissionModelStore. calendarPermisson. title = title
160
160
PermissionModel . PermissionModelStore. calendarPermisson. description = description
@@ -167,7 +167,7 @@ public extension View {
167
167
- Parameters:
168
168
- title: The title text
169
169
*/
170
-
170
+ @ available ( * , deprecated , message : " Please update PermissionsSwiftUI to 1.0.0 above. " )
171
171
func customizeCalendarPermissionWith( title: String ) -> some View {
172
172
PermissionModel . PermissionModelStore. calendarPermisson. title = title
173
173
return self . modifier ( PlaceholderModifier ( ) )
@@ -179,7 +179,7 @@ public extension View {
179
179
- Parameters:
180
180
- description: The description text
181
181
*/
182
-
182
+ @ available ( * , deprecated , message : " Please update PermissionsSwiftUI to 1.0.0 above. " )
183
183
func customizeCalendarPermissionWith( description: String ) -> some View {
184
184
PermissionModel . PermissionModelStore. calendarPermisson. description = description
185
185
return self . modifier ( PlaceholderModifier ( ) )
@@ -196,7 +196,7 @@ public extension View {
196
196
- title: The title text
197
197
- description: The description text
198
198
*/
199
-
199
+ @ available ( * , deprecated , message : " Please update PermissionsSwiftUI to 1.0.0 above. " )
200
200
func customizeBluetoothPermissionWith( title: String , description: String ) -> some View {
201
201
PermissionModel . PermissionModelStore. bluetoothPermission. title = title
202
202
PermissionModel . PermissionModelStore. bluetoothPermission. description = description
@@ -209,7 +209,7 @@ public extension View {
209
209
- Parameters:
210
210
- title: The title text
211
211
*/
212
-
212
+ @ available ( * , deprecated , message : " Please update PermissionsSwiftUI to 1.0.0 above. " )
213
213
func customizeBluetoothPermissionWith( title: String ) -> some View {
214
214
PermissionModel . PermissionModelStore. bluetoothPermission. title = title
215
215
return self . modifier ( PlaceholderModifier ( ) )
@@ -221,7 +221,7 @@ public extension View {
221
221
- Parameters:
222
222
- description: The description text
223
223
*/
224
-
224
+ @ available ( * , deprecated , message : " Please update PermissionsSwiftUI to 1.0.0 above. " )
225
225
func customizeBluetoothPermissionWith( description: String ) -> some View {
226
226
PermissionModel . PermissionModelStore. bluetoothPermission. description = description
227
227
return self . modifier ( PlaceholderModifier ( ) )
@@ -238,7 +238,7 @@ public extension View {
238
238
- title: The title text
239
239
- description: The description text
240
240
*/
241
-
241
+ @ available ( * , deprecated , message : " Please update PermissionsSwiftUI to 1.0.0 above. " )
242
242
func customizeMicPermissionWith( title: String , description: String ) -> some View {
243
243
PermissionModel . PermissionModelStore. microphonePermisson. title = title
244
244
PermissionModel . PermissionModelStore. microphonePermisson. description = description
@@ -251,7 +251,7 @@ public extension View {
251
251
- Parameters:
252
252
- title: The title text
253
253
*/
254
-
254
+ @ available ( * , deprecated , message : " Please update PermissionsSwiftUI to 1.0.0 above. " )
255
255
func customizeMicPermissionWith( title: String ) -> some View {
256
256
PermissionModel . PermissionModelStore. microphonePermisson. title = title
257
257
return self . modifier ( PlaceholderModifier ( ) )
@@ -263,7 +263,7 @@ public extension View {
263
263
- Parameters:
264
264
- description: The description text
265
265
*/
266
-
266
+ @ available ( * , deprecated , message : " Please update PermissionsSwiftUI to 1.0.0 above. " )
267
267
func customizeMicPermissionWith( description: String ) -> some View {
268
268
PermissionModel . PermissionModelStore. microphonePermisson. description = description
269
269
return self . modifier ( PlaceholderModifier ( ) )
@@ -280,7 +280,7 @@ public extension View {
280
280
- title: The title text
281
281
- description: The description text
282
282
*/
283
-
283
+ @ available ( * , deprecated , message : " Please update PermissionsSwiftUI to 1.0.0 above. " )
284
284
func customizeNotificationPermissionWith( title: String , description: String ) -> some View {
285
285
PermissionModel . PermissionModelStore. notificationPermission. title = title
286
286
PermissionModel . PermissionModelStore. notificationPermission. description = description
@@ -293,7 +293,7 @@ public extension View {
293
293
- Parameters:
294
294
- title: The title text
295
295
*/
296
-
296
+ @ available ( * , deprecated , message : " Please update PermissionsSwiftUI to 1.0.0 above. " )
297
297
func customizeNotificationPermissionWith( title: String ) -> some View {
298
298
PermissionModel . PermissionModelStore. notificationPermission. title = title
299
299
return self . modifier ( PlaceholderModifier ( ) )
@@ -305,7 +305,7 @@ public extension View {
305
305
- Parameters:
306
306
- description: The description text
307
307
*/
308
-
308
+ @ available ( * , deprecated , message : " Please update PermissionsSwiftUI to 1.0.0 above. " )
309
309
func customizeNotificationPermissionWith( description: String ) -> some View {
310
310
PermissionModel . PermissionModelStore. notificationPermission. description = description
311
311
return self . modifier ( PlaceholderModifier ( ) )
@@ -322,7 +322,7 @@ public extension View {
322
322
- title: The title text
323
323
- description: The description text
324
324
*/
325
-
325
+ @ available ( * , deprecated , message : " Please update PermissionsSwiftUI to 1.0.0 above. " )
326
326
func customizePhotoPermissionWith( title: String , description: String ) -> some View {
327
327
PermissionModel . PermissionModelStore. photoPermission. title = title
328
328
PermissionModel . PermissionModelStore. photoPermission. description = description
@@ -335,7 +335,7 @@ public extension View {
335
335
- Parameters:
336
336
- title: The title text
337
337
*/
338
-
338
+ @ available ( * , deprecated , message : " Please update PermissionsSwiftUI to 1.0.0 above. " )
339
339
func customizePhotoPermissionWith( title: String ) -> some View {
340
340
PermissionModel . PermissionModelStore. photoPermission. title = title
341
341
return self . modifier ( PlaceholderModifier ( ) )
@@ -347,7 +347,7 @@ public extension View {
347
347
- Parameters:
348
348
- description: The description text
349
349
*/
350
-
350
+ @ available ( * , deprecated , message : " Please update PermissionsSwiftUI to 1.0.0 above. " )
351
351
func customizePhotoPermissionWith( description: String ) -> some View {
352
352
PermissionModel . PermissionModelStore. photoPermission. description = description
353
353
return self . modifier ( PlaceholderModifier ( ) )
0 commit comments