Files
2021-03-22 16:49:24 +02:00

30 lines
584 B
Dart

import 'package:flutter/material.dart';
class ItemLogout extends StatelessWidget {
final String title;
const ItemLogout({
Key key,
this.title,
}) : super(key: key);
@override
Widget build(BuildContext context) {
return Padding(
padding: const EdgeInsets.all(16),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(
title,
style: TextStyle(
fontSize: 18,
color: Color(0xFF56B4FC),
),
)
],
),
);
}
}