There is no such way to share secrets as they can be referenced as API objects via pod which will be done inside a namespace but having said that you can always copy your pods from one namespace to another and have that secret on both namespaces.
you can use the following command for copying your pods from one namespace to another
kubectl get secret localdockerreg --namespace=default -oyaml | kubectl apply --namespace=dev -f -
If you want to know more about Kubernetes architecture you can refer the following tutorial