added simple profile

This commit is contained in:
2024-12-02 19:18:15 +01:00
parent 9982c3396a
commit cf79defe49
5 changed files with 56 additions and 2 deletions

View File

@@ -2,6 +2,7 @@ import 'package:flutter/material.dart';
import 'package:resume/services/breakpoints.dart';
import 'package:resume/services/content_provider.dart';
import 'package:resume/widgets/content_widget.dart';
import 'package:resume/widgets/profile.dart';
class LandingPage extends StatefulWidget {
const LandingPage({super.key});
@@ -60,6 +61,18 @@ class _LandingPageState extends State<LandingPage> {
: SingleChildScrollView(
child: Stack(
children: [
Align(
alignment: Alignment.topLeft,
child: SizedBox(
width: (MediaQuery.of(context).size.width -
_getPageWidth()) /
2,
child: const Padding(
padding: EdgeInsets.symmetric(horizontal: 50),
child: Profile(),
),
),
),
Align(
alignment: Alignment.topRight,
child: SizedBox(