Skip to content

Instantly share code, notes, and snippets.

@rayliverified
Created July 6, 2024 13:49
Show Gist options
  • Save rayliverified/011ec4868cda822ae4fa1a6d2d1d1bbf to your computer and use it in GitHub Desktop.
Save rayliverified/011ec4868cda822ae4fa1a6d2d1d1bbf to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(
title: 'MyApp Demo',
debugShowCheckedModeBanner: false,
home: Scaffold(
body: Center(
child: Flatlaybeautifulrosesarrangementwithcopyspace2(),
),
),
);
}
}
class Flatlaybeautifulrosesarrangementwithcopyspace2 extends StatelessWidget {
const Flatlaybeautifulrosesarrangementwithcopyspace2({super.key});
@override
Widget build(BuildContext context) {
return Image.network(
'https://firebasestorage.googleapis.com/v0/b/codeless-app.appspot.com/o/projects%2F0RWO6OlmViAiOGIHqQTf%2F183e7a6c3108994ebc18f7f9b21c2c52d3c6ef97flat-lay-beautiful-roses-arrangement-with-copy-space%202.png?alt=media&token=05d57231-b713-479a-a6b6-c30a1f12c355',
width: 700,
height: 669,
fit: BoxFit.none,
alignment: const Alignment(-0.524, 1),
scale: 1.919,
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment