You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
justMusic/Sources/justMUSIC/lib/components/buttonPostComponent.dart

16 lines
350 B

import 'package:flutter/Material.dart';
import '../values/constants.dart';
class ButtonPostComponent extends StatelessWidget {
const ButtonPostComponent({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Container(
padding: EdgeInsets.fromLTRB(20, 5, 20, 5),
color: postbutton,
);
}
}