Skip to content
View Natusiek's full-sized avatar
🐢
zółwie zawsze motywują do pracy
🐢
zółwie zawsze motywują do pracy

Block or report Natusiek

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Natusiek/README.md
import 'package:flutter/material.dart';

class Profile extends StatelessWidget {

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Column(mainAxisAlignment: MainAxisAlignment.center, children: [
        ClipOval(
          child: Image.asset("assets/profile/avatar.png"),
        ),
        // NOTE: Basic information
        const ProfileInfo(title: "Name:", label: "Alan Pypno"),
        const ProfileInfo(title: "Location:", label: "Poland, Cracow"),
        const ProfileInfo(title: "Email:", label: "alanpypno@gmail.com"),
        // NOTE: Experience
        const ProfileInfo(title: "Experience:", label: "3 years"),
        const ProfileInfo(title: "Languages:", label: "Dart, Kotlin"),
        // NOTE: Portfolio
        const ProfileInfo(
            title: "Linkedin:",
            label: "www.linkedin.com/in/alan-pypno-14b795278"),
        const ProfileInfo(
            title: "Github:",
            label: "www.github.com/Natusiek"),

        // TODO: Implement the application I'm working on and establish a startup
      ]),
    );
  }

}

class ProfileInfo extends StatelessWidget {
  final String title;
  final String label;

  const ProfileInfo({
    required this.title,
    required this.label,
  });
  
  @override
  Widget build(BuildContext context) {
    return Row(mainAxisSize: MainAxisSize.min, children: [
      Text(
        title,
        style: const TextStyle(fontSize: 14, fontWeight: FontWeight.bold),
      ),
      Padding(
        padding: const EdgeInsets.only(left: 10),
        child: Text(label),
      )
    ]);
  }

}

Pinned Loading

  1. promultimedia promultimedia Public

    Dart 1

  2. nsAmongUs nsAmongUs Public

    Kotlin 1

  3. nsSaveEq nsSaveEq Public

    Plugin na zapisywanie eq

    Java

  4. nsCases nsCases Public

    Java 1

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy