removed settings (made redundant)
This commit is contained in:
@@ -1,10 +1,30 @@
|
||||
// !!! MADE REDUNDANT !!!
|
||||
|
||||
import 'package:flutter/material.dart';
|
||||
//import 'package:frontend/provider/quote_provider.dart';
|
||||
|
||||
//import 'package:frontend/values/strings.dart';
|
||||
//import 'package:provider/provider.dart';
|
||||
|
||||
/// settings items
|
||||
/// 1. import quotes from file
|
||||
|
||||
|
||||
class SettingsPage extends StatelessWidget {
|
||||
const SettingsPage({super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return const Center(child: Text('let\'s set something up!'));
|
||||
//final provider = context.watch<QuoteProvider>();
|
||||
return const Center(
|
||||
child: Card(
|
||||
child: Row(
|
||||
children: [
|
||||
//Text(Strings.importQuotesFromFile),
|
||||
//IconButton(onPressed: provider.importQuotesFromFile, icon: icon)
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user