- created custom text block, dropdown,
- created extract, goals and block card screen. - generated tests for design system components. - updated restore password and home screens to 17/11 design.
This commit is contained in:
@@ -21,7 +21,7 @@ class ActivityScreen extends ConsumerWidget {
|
||||
final content = [
|
||||
Text(
|
||||
"Movimientos recientes",
|
||||
style: TextStyle(fontWeight: FontWeight.bold, fontSize: 30),
|
||||
style: TextStyle(fontWeight: FontWeight.w500, fontSize: 24),
|
||||
),
|
||||
Row(
|
||||
spacing: 20,
|
||||
@@ -54,4 +54,4 @@ class ActivityScreen extends ConsumerWidget {
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -29,21 +29,29 @@ class AlertScreenState extends ConsumerState<AlertScreen> {
|
||||
Widget build(BuildContext context) {
|
||||
final theme = ref.watch(themePortProvider);
|
||||
|
||||
return Scaffold(
|
||||
backgroundColor: theme.getColorFor(ThemeCode.backgroundSecondary),
|
||||
body: Container(
|
||||
margin: EdgeInsets.all(30),
|
||||
return SafeArea(
|
||||
child: Container(
|
||||
color: theme.getColorFor(ThemeCode.backgroundSecondary),
|
||||
margin: EdgeInsets.symmetric(horizontal: 24, vertical: 16),
|
||||
child: Column(
|
||||
spacing: 32,
|
||||
children: [
|
||||
Row(
|
||||
children: [
|
||||
Text("Alertas"),
|
||||
Text(
|
||||
"Alertas",
|
||||
style: TextStyle(
|
||||
fontSize: 24,
|
||||
letterSpacing: 0,
|
||||
fontWeight: FontWeight.w500
|
||||
)
|
||||
),
|
||||
Spacer(),
|
||||
TextButton(
|
||||
onPressed: () => setState(() {
|
||||
edit = !edit;
|
||||
}),
|
||||
child: Text("Editar"),
|
||||
child: Text("Editar", style: TextStyle(fontSize: 16, letterSpacing: 0)),
|
||||
),
|
||||
],
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user