Skip to content

Commit

Permalink
fix: 🩹Resolved merge conflict and PR review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Sahil-Simform committed Dec 2, 2024
1 parent f3305eb commit 30b9224
Showing 1 changed file with 8 additions and 14 deletions.
22 changes: 8 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,25 +18,19 @@ to `descriptionTextAlign` to correspond it more with the TextAlign property.`tit
and `descriptionAlignment` will be used for widget alignment.

Before:

```dart
Showcase
(
titleAlignment: TextAlign.center,
descriptionAlignment: TextAlign.center,
)
,
Showcase(
titleAlignment: TextAlign.center,
descriptionAlignment: TextAlign.center,
),
```

After:

```dart
Showcase
(
titleTextAlign: TextAlign.center,
descriptionTextAlign: TextAlign.center,
)
,
Showcase(
titleTextAlign: TextAlign.center,
descriptionTextAlign: TextAlign.center,
),
```

## Migration guide for release 3.0.0
Expand Down

0 comments on commit 30b9224

Please sign in to comment.