29 lines
753 B
Dart
29 lines
753 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_easyloading/flutter_easyloading.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: Column(
|
|
children: [
|
|
Text('BookmarksPage'),
|
|
ElevatedButton(
|
|
onPressed: () {
|
|
// EasyLoading.showProgress(0.3, status: 'downloading...');
|
|
// EasyLoading.showToast("1231232");
|
|
EasyLoading.show(status: "Loading");
|
|
},
|
|
child: Text("Test"),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|