Skip to content

Instantly share code, notes, and snippets.

@olumidayy
Last active May 11, 2020 23:03
Show Gist options
  • Save olumidayy/6a0e792def6065b0407690787a5db00b to your computer and use it in GitHub Desktop.
Save olumidayy/6a0e792def6065b0407690787a5db00b to your computer and use it in GitHub Desktop.
mobile day 7
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
debugShowCheckedModeBanner: false,
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text('Portfolio App')),
body: new ListView(children: <Widget>[
Padding(
padding: const EdgeInsets.all(10),
child: Text("MY WORKS",
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 20,
))),
Column(children: <Widget>[
Image.network(
'https://woobro.design/thumbnails/43/website-loading-speed-optimisation-vector-illustration-5de2455056206.png'),
Padding(
padding: const EdgeInsets.only(top: 10),
child: Text("Project Title",
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 17,
))),
Padding(
padding: const EdgeInsets.all(10),
child: Text(
"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book."))
]),
Column(children: <Widget>[
Image.network(
'https://woobro.design/thumbnails/33/social-mobile-users-vector-illustration-5de18e2c1f713.png'),
Padding(
padding: const EdgeInsets.only(top: 10),
child: Text("Connectify",
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 17,
))),
Padding(
padding: const EdgeInsets.all(10),
child: Text(
"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book."))
]),
Column(children: <Widget>[
Image.network(
'https://woobro.design/thumbnails/39/website-maintenance-vector-illustration-5de194c28795e.png'),
Padding(
padding: const EdgeInsets.only(top: 10),
child: Text("DataFit",
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 17,
))),
Padding(
padding: const EdgeInsets.all(10),
child: Text(
"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book."))
]),
Column(children: <Widget>[
Image.network(
'https://woobro.design/thumbnails/43/website-loading-speed-optimisation-vector-illustration-5de2455056206.png'),
Padding(
padding: const EdgeInsets.only(top: 10),
child: Text("Project Title",
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 17,
))),
Padding(
padding: const EdgeInsets.all(10),
child: Text(
"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book."))
]),
Column(children: <Widget>[
Image.network(
'https://woobro.design/thumbnails/48/sartup-fly-5e5e1f173a287.png'),
Padding(
padding: const EdgeInsets.only(top: 10),
child: Text("KikStart",
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 17,
))),
Padding(
padding: const EdgeInsets.all(10),
child: Text(
"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book."))
]),
Column(children: <Widget>[
Image.network(
'https://woobro.design/thumbnails/27/broken-links-vector-illustration-5de181c60262a.png'),
Padding(
padding: const EdgeInsets.only(top: 10),
child: Text("Myner",
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 17,
))),
Padding(
padding: const EdgeInsets.all(10),
child: Text(
"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book."))
])
]));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment