Skip to content

Commit

Permalink
streamline catalog librarian colors
Browse files Browse the repository at this point in the history
  • Loading branch information
mmalkindi committed Dec 20, 2023
1 parent 4c7533e commit 67088a7
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
5 changes: 0 additions & 5 deletions lib/catalog/screens/librarian_add_book.dart
Original file line number Diff line number Diff line change
Expand Up @@ -270,10 +270,6 @@ class _AddBookPageState extends State<AddBookPage> {
child: Padding(
padding: const EdgeInsets.all(8.0),
child: ElevatedButton(
style: ButtonStyle(
backgroundColor:
MaterialStateProperty.all(Colors.indigo),
),
onPressed: () async {
if (_formKey.currentState!.validate()) {
final response = await _addBook(request);
Expand All @@ -295,7 +291,6 @@ class _AddBookPageState extends State<AddBookPage> {
},
child: const Text(
"Add Book",
style: TextStyle(color: Colors.white),
),
),
),
Expand Down
5 changes: 0 additions & 5 deletions lib/catalog/screens/librarian_edit_book.dart
Original file line number Diff line number Diff line change
Expand Up @@ -299,10 +299,6 @@ class _EditBookPageState extends State<EditBookPage> {
child: Padding(
padding: const EdgeInsets.all(8.0),
child: ElevatedButton(
style: ButtonStyle(
backgroundColor:
MaterialStateProperty.all(Colors.indigo),
),
onPressed: () async {
if (_formKey.currentState!.validate()) {
final response = await _editBook(request);
Expand All @@ -327,7 +323,6 @@ class _EditBookPageState extends State<EditBookPage> {
},
child: const Text(
"Edit Book",
style: TextStyle(color: Colors.white),
),
),
),
Expand Down

0 comments on commit 67088a7

Please sign in to comment.