Skip to content

Commit

Permalink
Removing modal component
Browse files Browse the repository at this point in the history
  • Loading branch information
carllosnc committed Nov 4, 2024
1 parent 8a23a3b commit a3b5bb9
Show file tree
Hide file tree
Showing 8 changed files with 0 additions and 183 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ alignment options.
- [VWSelect](https://github.com/carllosnc/vw/blob/master/docs/vw_select.md): A select widget based on text field and bottom sheet.
- [VWModal](https://github.com/carllosnc/vw/blob/master/docs/vw_modal.md): A modal component that can be used to display a modal on the screen.
- [VWBox](https://github.com/carllosnc/vw/blob/master/docs/vw_box.md): A box with background image, gradient, blur effect, and custom border radius.
- [VWReveal](https://github.com/carllosnc/vw/blob/master/docs/vw_reveal.md): A widget that reveals it's child with a custom animation.
Expand Down
46 changes: 0 additions & 46 deletions docs/vw_modal.md

This file was deleted.

2 changes: 0 additions & 2 deletions example/lib/app.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import './examples/vw_button_example.dart';
import './examples/vw_sheet_example.dart';
import './examples/vw_timepicker_example.dart';
import './examples/vw_select_example.dart';
import './examples/vw_modal_example.dart';
import './examples/vw_box_example.dart';
import './examples/vw_reveal_example.dart';
import './examples/vw_text_example.dart';
Expand Down Expand Up @@ -49,7 +48,6 @@ class App extends StatelessWidget {
'/vw_page': (context) => const VWSheetExample(),
'/vw_timepicker': (context) => const VWTimepickerExample(),
'/vw_select': (context) => const VWSelectExample(),
'/vw_modal': (context) => const VWModalExample(),
'/vw_box': (context) => const VWBoxExample(),
'/vw_reveal': (context) => const VWRevealExample(),
'/vw_text': (context) => const VWTextExample(),
Expand Down
40 changes: 0 additions & 40 deletions example/lib/examples/vw_modal_example.dart

This file was deleted.

6 changes: 0 additions & 6 deletions example/lib/home.dart
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,6 @@ class Home extends StatelessWidget {
Navigator.pushNamed(context, '/vw_select');
},
),
ListTile(
title: const Text('VW Modal'),
onTap: () {
Navigator.pushNamed(context, '/vw_modal');
},
),
ListTile(
title: const Text('VW Box'),
onTap: () {
Expand Down
1 change: 0 additions & 1 deletion lib/vw.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ export './vw_row.dart';
export './vw_button.dart';
export './vw_timepicker.dart';
export './vw_select.dart';
export './vw_modal.dart';
export './vw_box.dart';
export './vw_reveal.dart';
export './vw_text.dart';
Expand Down
35 changes: 0 additions & 35 deletions lib/vw_modal.dart

This file was deleted.

51 changes: 0 additions & 51 deletions test/vw_modal_test.dart

This file was deleted.

0 comments on commit a3b5bb9

Please sign in to comment.