



import 'package:english_words/english_words.dart';
main() {
nouns.take(50).forEach(print);
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
Widget build(BuildContext context) {
return MaterialApp(
home: SafeArea(
child: Scaffold(
body: PageView.builder(
itemCount: nouns.length,
itemBuilder: (context, index) {
return Center(
child: Text(
nouns[index],
style: TextStyle(
color: Colors.black87,
fontWeight: FontWeight.bold,
fontSize: 46),
),
);
},
),
),
),
);
}
}