12 lines
312 B
Dart
12 lines
312 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
mainButtonStyle() {
|
||
|
return ElevatedButton.styleFrom(
|
||
|
backgroundColor: Color(0xFF495057),
|
||
|
foregroundColor: Colors.white,
|
||
|
padding: EdgeInsets.all(18.0),
|
||
|
shape: RoundedRectangleBorder(
|
||
|
borderRadius: BorderRadius.circular(18.0),
|
||
|
));
|
||
|
}
|