Skip to content

Commit eefef6b

Browse files
feat: naming convention
1 parent a212337 commit eefef6b

File tree

8 files changed

+233
-483
lines changed

8 files changed

+233
-483
lines changed

lib/fluvera.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
library fluvera;
22

3-
export 'src/core/facades/http.dart';
4-
export 'src/core/facades/navigator.dart';
3+
export 'src/core/base/http.dart';
4+
export 'src/core/base/navigator.dart';
55
export 'src/core/fluvera_factory.dart';
66
export 'src/core/models/response/response.dart';
77
export 'src/core/provider/provider.dart';

lib/src/common/attributes/actions/actions.freezed.dart

+220-473
Large diffs are not rendered by default.
File renamed without changes.

lib/src/widgets/align/attributes/attributes.freezed.dart

+3-2
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,9 @@ class __$$_AlignAttributesCopyWithImpl<$Res>
116116
class _$_AlignAttributes implements _AlignAttributes {
117117
const _$_AlignAttributes(
118118
{@FluveraAlignmentGeometryConverter()
119-
this.alignment = AlignmentDirectional.center,
120-
@FluveraWidgetConverter() this.child});
119+
this.alignment = AlignmentDirectional.center,
120+
@FluveraWidgetConverter()
121+
this.child});
121122

122123
factory _$_AlignAttributes.fromJson(Map<String, dynamic> json) =>
123124
_$$_AlignAttributesFromJson(json);

lib/src/widgets/column/attributes/attributes.freezed.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ abstract class _ColumnAttributes implements ColumnAttributes {
261261
final FluveraEnumAttributeValue<MainAxisAlignment> mainAxisAlignment,
262262
final FluveraEnumAttributeValue<CrossAxisAlignment> crossAxisAlignment,
263263
@FluveraWidgetConverter()
264-
required final List<Widget> children}) = _$_ColumnAttributes;
264+
required final List<Widget> children}) = _$_ColumnAttributes;
265265

266266
factory _ColumnAttributes.fromJson(Map<String, dynamic> json) =
267267
_$_ColumnAttributes.fromJson;

lib/src/widgets/fractionally_sized_box/attributes/attributes.freezed.dart

+6-4
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,9 @@ class _$_FractionallySizedBoxAttributes
188188
{this.widthFactor,
189189
this.heightFactor,
190190
@FluveraAlignmentGeometryConverter()
191-
this.alignment = AlignmentDirectional.center,
192-
@FluveraWidgetConverter() this.child});
191+
this.alignment = AlignmentDirectional.center,
192+
@FluveraWidgetConverter()
193+
this.child});
193194

194195
factory _$_FractionallySizedBoxAttributes.fromJson(
195196
Map<String, dynamic> json) =>
@@ -251,9 +252,10 @@ abstract class _FractionallySizedBoxAttributes
251252
const factory _FractionallySizedBoxAttributes(
252253
{final FluveraAttributeValue<num>? widthFactor,
253254
final FluveraAttributeValue<num>? heightFactor,
254-
@FluveraAlignmentGeometryConverter() final AlignmentGeometry? alignment,
255+
@FluveraAlignmentGeometryConverter()
256+
final AlignmentGeometry? alignment,
255257
@FluveraWidgetConverter()
256-
final Widget? child}) = _$_FractionallySizedBoxAttributes;
258+
final Widget? child}) = _$_FractionallySizedBoxAttributes;
257259

258260
factory _FractionallySizedBoxAttributes.fromJson(Map<String, dynamic> json) =
259261
_$_FractionallySizedBoxAttributes.fromJson;

lib/src/widgets/row/attributes/attributes.freezed.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ abstract class _RowAttributes implements RowAttributes {
259259
final FluveraEnumAttributeValue<MainAxisAlignment> mainAxisAlignment,
260260
final FluveraEnumAttributeValue<CrossAxisAlignment> crossAxisAlignment,
261261
@FluveraWidgetConverter()
262-
required final List<Widget> children}) = _$_RowAttributes;
262+
required final List<Widget> children}) = _$_RowAttributes;
263263

264264
factory _RowAttributes.fromJson(Map<String, dynamic> json) =
265265
_$_RowAttributes.fromJson;

0 commit comments

Comments
 (0)