diff --git a/lib/screens/certifications.dart b/lib/screens/certifications.dart new file mode 100644 index 0000000..7c10fad --- /dev/null +++ b/lib/screens/certifications.dart @@ -0,0 +1,34 @@ +import 'package:gecko/globals.dart'; +import 'package:flutter/material.dart'; +import 'package:gecko/widgets/certs_received.dart'; +import 'package:gecko/widgets/certs_sent.dart'; +import 'package:gecko/widgets/header_profile.dart'; + +class CertificationsScreen extends StatelessWidget { + const CertificationsScreen({Key? key, required this.address}) + : super(key: key); + final String address; + + @override + Widget build(BuildContext context) { + // final _homeProvider = Provider.of(context); + + return Scaffold( + backgroundColor: backgroundColor, + appBar: AppBar( + toolbarHeight: 60 * ratio, + title: const SizedBox( + height: 22, + child: Text('Certifications'), + )), + body: SafeArea( + child: Column(children: [ + const SizedBox(height: 20), + HeaderProfile(address: address), + CertsReceived(address: address), + CertsSent(address: address), + const SizedBox(height: 20), + ]), + )); + } +} diff --git a/lib/widgets/certs_received.dart b/lib/widgets/certs_received.dart new file mode 100644 index 0000000..aca7d7d --- /dev/null +++ b/lib/widgets/certs_received.dart @@ -0,0 +1,12 @@ + +import 'package:flutter/material.dart'; + +class CertsReceived extends StatelessWidget { + const CertsReceived({Key? key, required this.address}) : super(key: key); + final String address; + + @override + Widget build(BuildContext context) { + return const Text('tatataaaaaaaaaa'); + } +} diff --git a/lib/widgets/certs_sent.dart b/lib/widgets/certs_sent.dart new file mode 100644 index 0000000..9c5e465 --- /dev/null +++ b/lib/widgets/certs_sent.dart @@ -0,0 +1,11 @@ +import 'package:flutter/material.dart'; + +class CertsSent extends StatelessWidget { + const CertsSent({Key? key, required this.address}) : super(key: key); + final String address; + + @override + Widget build(BuildContext context) { + return const Text('tatataaaaaaaaaa'); + } +} diff --git a/lib/widgets/header_profile.dart b/lib/widgets/header_profile.dart new file mode 100644 index 0000000..9ce5231 --- /dev/null +++ b/lib/widgets/header_profile.dart @@ -0,0 +1,11 @@ +import 'package:flutter/material.dart'; + +class HeaderProfile extends StatelessWidget { + const HeaderProfile({Key? key, required this.address}) : super(key: key); + final String address; + + @override + Widget build(BuildContext context) { + return const Text('tatataaaaaaaaaa'); + } +}