19 lines
377 B
Dart
19 lines
377 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:get/get.dart';
|
|
|
|
import 'bookmarks_controller.dart';
|
|
|
|
class BookmarksPage extends GetView<BookmarksController> {
|
|
const BookmarksPage({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Center(
|
|
child: Container(
|
|
child: Text('BookmarksPage'),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|