Skip to content

Commit a842b8b

Browse files
committed
📝 Fix broken links
1 parent 27ab487 commit a842b8b

File tree

4 files changed

+26
-24
lines changed

4 files changed

+26
-24
lines changed

docs/flutter_resizing.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ title: Resizing
44

55
# Resizing
66

7-
`TransformableBox` can be used to resize a widget by default. [Transformable Box](transformableBox) utilizes
8-
[Box Transform](boxTransform) to create a fully-featured Flutter implementation of the [Box Transform](boxTransform) API.
7+
`TransformableBox` can be used to resize a widget by default. [Transformable Box][transformableBox] utilizes
8+
[Box Transform][boxTransform] to create a fully-featured Flutter implementation of the [Box Transform][boxTransform] API.
99

1010
```dart title="Resizable widget"
1111
Stack(
@@ -41,7 +41,7 @@ Resizing is freeform by default, meaning that the user can resize the box in any
4141
## Controlling Resize Modes
4242

4343
The `resolveResizeModeCallback` is a callback that is called whenever a resize operation is about to be performed on a
44-
given [Transformable Box](transformableBox). This allows you to define the resize behavior at the time of the resize
44+
given [Transformable Box][transformableBox]. This allows you to define the resize behavior at the time of the resize
4545
operation. This is useful when you want to change the resize behavior based on the state of the application.
4646

4747
The most common use case for this is **keyboard shortcuts**. A `defaultResolveResizeModeCallback` function is used by

docs/get_started.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Add this package as dependency in your `pubspec.yaml` file:
1515

1616
## Models
1717

18-
[Box Transform](boxTransform) defines several models to mimic that of Flutter's.
18+
[Box Transform][boxTransform] defines several models to mimic that of Flutter's.
1919

2020
- The equivalent of `Size` is `Dimension`.
2121
- The equivalent of `Offset` is `Vector2` from the `vector_math` package.

docs/index.mdx

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Box Transform
44

5-
[Box Transform](github) provides packages that allows you to programmatically handle box resizing and dragging.
5+
[Box Transform][github] provides packages that allows you to programmatically handle box resizing and dragging.
66
It provides highly flexible, programmatically resizable and draggable boxes that can be used in any Dart or Flutter
77
project. A library for advanced resizing of rect in UI.
88

@@ -26,25 +26,27 @@ project. A library for advanced resizing of rect in UI.
2626

2727
## Getting Started
2828

29-
See [Getting Started](https://docs.page/hyper-designed/box_transform/flutter_get_started) guide for more details.
29+
See [Getting Started](/flutter_get_started) guide for more details.
3030

31-
### Live Demo: [box-transform.codemagic.app](https://box-transform.codemagic.app)
31+
### Live Demo: [Box-transformer Playground][demo]
3232

3333
## Contributing
3434

35-
See [CONTRIBUTING.md](https://github.com/BirjuVachhani/adaptive_theme/blob/main/CONTRIBUTING.md) for details.
35+
See [CONTRIBUTING.md][contributing] for details.
3636

37-
See [DEVELOPMENT.md](https://github.com/BirjuVachhani/adaptive_theme/blob/main/development.md) for development setup.
37+
See [DEVELOPMENT.md][development] for development setup.
3838

3939
## Authors
4040

4141
<table>
4242
<tr>
43-
<td align="center"><a href="https://github.com/birjuvachhani"><img src="https://avatars.githubusercontent.com/u/20423471?s=100" width="100px;" alt=""/><br /><sub><b>Birju Vachhani</b></sub></a></td>
43+
<td align="center"><a href="https://github.com/BirjuVachhani"><img src="https://avatars.githubusercontent.com/u/20423471?s=100" width="100px;" alt=""/><br /><sub><b>Birju Vachhani</b></sub></a></td>
4444
<td align="center"><a href="https://github.com/SaadArdati"><img src="https://avatars.githubusercontent.com/u/7407478?v=4" width="100px;" alt=""/><br /><sub><b>Saad Ardati</b></sub></a></td>
4545
</tr>
4646
</table>
4747

4848
[github]: https://github.com/hyper-designed/box_transform
49-
[docsite]: https://docs.page/hyper-designed/box_transform
50-
[pubdev]: https://pub.dev/packages/box_transform
49+
[pubdev]: https://pub.dev/packages/box_transform
50+
[demo]: https://boxtransform-demo.hyperdesigned.dev
51+
[contributing]: https://github.com/hyper-designed/box_transform/blob/main/CONTRIBUTING.md
52+
[development]: https://github.com/hyper-designed/box_transform/blob/main/development.md

docs/motivation.mdx

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,27 +4,27 @@ title: Motivation
44

55
# Motivation
66

7-
We, [Saad Ardati](saadGithub) and [Birju Vachhani](birjuGithub), created
8-
[Box Transform](boxTransform) and [Flutter Box Transform](flutterBoxTransform) to make it easy for anyone to create
7+
We, [Saad Ardati][saadGithub] and [Birju Vachhani][birjuGithub], created
8+
[Box Transform][boxTransform] and [Flutter Box Transform][flutterBoxTransform] to make it easy for anyone to create
99
resizable and draggable rectangles in their Dart and Flutter projects. We know how frustrating it can be to have to
1010
reimplement the same functionality multiple times. That's why we created these packages after needing to implement
11-
resizable and draggable boxes over 3 separate times in [Codelessly](codelessly).
11+
resizable and draggable boxes over 3 separate times in [Codelessly][codelessly].
1212

1313
These packages represent the culmination of our knowledge and experience in creating resizable and draggable boxes in
14-
[Flutter](flutter) in a natural and accessible way. We're excited to share our work with others and hope that it can
14+
[Flutter][flutter] in a natural and accessible way. We're excited to share our work with others and hope that it can
1515
help save time and simplify projects.
1616

17-
[Box Transform](boxTransform) is a **pure-Dart** base package that allows you to programmatically handle box resizing
18-
and dragging without relying on [Flutter](flutter). It provides highly flexible, programmatically resizable and
19-
draggable boxes that can be used in any [Dart](dart) project.
17+
[Box Transform][boxTransform] is a **pure-Dart** base package that allows you to programmatically handle box resizing
18+
and dragging without relying on [Flutter][flutter]. It provides highly flexible, programmatically resizable and
19+
draggable boxes that can be used in any [Dart][dart] project.
2020

21-
[Flutter Box Transform](flutterBoxTransform) is a Flutter package that builds on top of [Box Transform](boxTransform),
22-
providing a state-friendly API for easily implementing **resizable** and **draggable** boxes as [Flutter](flutter)
23-
widgets. With [Flutter Box Transform](flutterBoxTransform), you can convert the pure-Dart models to **Flutter-relevant**
21+
[Flutter Box Transform][flutterBoxTransform] is a Flutter package that builds on top of [Box Transform][boxTransform],
22+
providing a state-friendly API for easily implementing **resizable** and **draggable** boxes as [Flutter][flutter]
23+
widgets. With [Flutter Box Transform][flutterBoxTransform], you can convert the pure-Dart models to **Flutter-relevant**
2424
models and use its feature-complete API to quickly build your own **resizable** and **draggable** boxes.
2525

26-
Whether you're working on a **pure-Dart** project or a [Flutter](flutter) project, we hope that
27-
[Box Transform](boxTransform) and [Flutter Box Transform](flutterBoxTransform) can help you easily create the best
26+
Whether you're working on a **pure-Dart** project or a [Flutter][flutter] project, we hope that
27+
[Box Transform][boxTransform] and [Flutter Box Transform][flutterBoxTransform] can help you easily create the best
2828
possible version of a **resizable** and **draggable** box for your project.
2929

3030
[saadGithub]: https://github.com/SaadArdati

0 commit comments

Comments
 (0)