Skip to content

Instantly share code, notes, and snippets.

@CaiJingLong
Created March 26, 2020 12:32
Show Gist options
  • Save CaiJingLong/edc67433fe633fe0b938987ce8d806db to your computer and use it in GitHub Desktop.
Save CaiJingLong/edc67433fe633fe0b938987ce8d806db to your computer and use it in GitHub Desktop.
FractionallySizedBox example
import "package:flutter/material.dart";
void main() {
runApp(
MaterialApp(
home: Container(
color: Colors.red,
child: Stack(
children: [
Align(
child: FractionallySizedBox(
child: Container(
color: Colors.blue,
),
widthFactor: 0.3,
heightFactor: 0.1,
),
alignment: Alignment(-0.5, 0),
),
],
),
),
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment