Migrate to Dart 3

This commit is contained in:
Ankit Mahato
2023-08-27 20:23:41 +05:30
parent 8bb9cbcc91
commit cdba6476b0
13 changed files with 178 additions and 164 deletions

View File

@ -10,8 +10,8 @@ void main() {
MaterialApp(
title: 'URL Field',
theme: kThemeDataDark,
home: Scaffold(
body: Column(children: const [URLField(activeId: '2')]),
home: const Scaffold(
body: Column(children: [URLField(activeId: '2')]),
),
),
);
@ -30,9 +30,9 @@ void main() {
MaterialApp(
title: 'CellField',
theme: kThemeDataLight,
home: Scaffold(
home: const Scaffold(
body: Column(
children: const [
children: [
CellField(
keyId: "4",
hintText: "Passing some hint text",