<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: 2025</title>
    <description>The latest articles on DEV Community by 2025 (@2025_25258d57b869e4005098).</description>
    <link>https://dev.to/2025_25258d57b869e4005098</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2640230%2F94ae18f7-b78e-415c-8b51-69ee3ab912b7.png</url>
      <title>DEV Community: 2025</title>
      <link>https://dev.to/2025_25258d57b869e4005098</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/2025_25258d57b869e4005098"/>
    <language>en</language>
    <item>
      <title>snackbar in flutter</title>
      <dc:creator>2025</dc:creator>
      <pubDate>Wed, 01 Jan 2025 11:53:29 +0000</pubDate>
      <link>https://dev.to/2025_25258d57b869e4005098/snackbar-in-flutter-1e9a</link>
      <guid>https://dev.to/2025_25258d57b869e4005098/snackbar-in-flutter-1e9a</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;import 'package:flutter/material.dart';

void main() {
  runApp(om());
}

class om extends StatefulWidget {
  const om({super.key});

  @override
  State&amp;lt;om&amp;gt; createState() =&amp;gt; _omState();
}

class _omState extends State&amp;lt;om&amp;gt; {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'om namah shivay',
      debugShowCheckedModeBanner: false,
      darkTheme: ThemeData.dark(),
      home: Scaffold(
        appBar: AppBar(
          title: Text('snackbar'),
          backgroundColor: Colors.red,
        ),
        body: Center(
          child: Builder(builder: (contextForSnckbar) {
            return ElevatedButton(
                style: ButtonStyle(
                    backgroundColor: WidgetStatePropertyAll(Colors.red)),
                onPressed: () {
                  final snackbar = SnackBar(content: Text('i understood'));
                  ScaffoldMessenger.of(contextForSnckbar)
                      .showSnackBar(snackbar);
                },
                child: Text('click'));
          }),
        ),
      ),
    );
  }
}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;I understood&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Syntax of comments in dart</title>
      <dc:creator>2025</dc:creator>
      <pubDate>Wed, 01 Jan 2025 09:28:20 +0000</pubDate>
      <link>https://dev.to/2025_25258d57b869e4005098/syntax-of-comments-in-dart-52je</link>
      <guid>https://dev.to/2025_25258d57b869e4005098/syntax-of-comments-in-dart-52je</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;void main() {
  print('Hello World!');
// this is a single line comment
//now i learned about the  syntax of commnets in dart
/* 
  this is a multiline comment
  i can write anything here
  and it will not be executed
*/
/// this is a documentation comment
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;I understood&lt;/p&gt;

</description>
      <category>dart</category>
      <category>programming</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>My first Dart program</title>
      <dc:creator>2025</dc:creator>
      <pubDate>Wed, 01 Jan 2025 09:27:13 +0000</pubDate>
      <link>https://dev.to/2025_25258d57b869e4005098/my-first-dart-program-1j5m</link>
      <guid>https://dev.to/2025_25258d57b869e4005098/my-first-dart-program-1j5m</guid>
      <description>&lt;p&gt;it's my first code in dart programming language.&lt;/p&gt;

&lt;p&gt;void main() {&lt;br&gt;
print('Hello World!');&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;output:-Hello World!&lt;/p&gt;

</description>
      <category>dart</category>
      <category>programming</category>
      <category>learning</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
