Skip to content

Instantly share code, notes, and snippets.

@MariaMelnik
Created February 11, 2024 13:25
Show Gist options
  • Save MariaMelnik/a423beca1039387dc470196e7a43c7d2 to your computer and use it in GitHub Desktop.
Save MariaMelnik/a423beca1039387dc470196e7a43c7d2 to your computer and use it in GitHub Desktop.
flutter: suffixIcon alignment
import 'package:flutter/material.dart';
const Color darkBlue = Color.fromARGB(255, 18, 32, 47);
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData.dark().copyWith(
scaffoldBackgroundColor: darkBlue,
),
debugShowCheckedModeBanner: false,
home: Scaffold(
body: Center(
child: MyWidget(),
),
),
);
}
}
class MyWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
final textStyle = DefaultTextStyle.of(context).style;
return SizedBox(
width: 80,
child: TextField(
style: textStyle,
decoration:
InputDecoration(
suffixIcon: Text('suffix', style: textStyle),
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment