Skip to content

Instantly share code, notes, and snippets.

View nitishk72's full-sized avatar
🏠
Working from home

Nitish Kumar Singh nitishk72

🏠
Working from home
View GitHub Profile
import 'package:flutter/material.dart';
import 'dart:math';
class FoldablePage extends StatefulWidget {
@override
_FoldableState createState() => _FoldableState();
}
class _FoldableState extends State<FoldablePage>
with SingleTickerProviderStateMixin {
@lmcneel
lmcneel / remove-node-modules.md
Last active May 20, 2024 15:50
How to remove node_modules after they have been added to a repo

How to remove node_modules

Create a .gitignore file

  1. Check for an existing .gitignore file in the project directory
ls -a