Skip to content

Instantly share code, notes, and snippets.

@DaisukeNagata
Created July 12, 2022 22:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DaisukeNagata/8f11213d6d2bfab72b65c7bab8b0d7c6 to your computer and use it in GitHub Desktop.
Save DaisukeNagata/8f11213d6d2bfab72b65c7bab8b0d7c6 to your computer and use it in GitHub Desktop.
transform.dart
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key, required this.title});
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: Container(
color: Colors.red,
transform: Matrix4.translationValues(0, 0, 0), // <-
width: 200,
height: 200,
),
),
);
}
}
@DaisukeNagata
Copy link
Author

Matrix4.translationValues(0, 0, 0) Matrix4.translationValues(-200, 0, 0)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment